/* Scroll Styles */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: var(--gray);
  border-radius: 6px;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 6px;
  transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: #e07722;
}

/* Firefox için scroll stilleri */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--primary-color) var(--gray);
}

/* Fonts */
@font-face {
  font-family: 'Rajdhani';
  src: url('../fonts/rajdhani/Rajdhani-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Rajdhani';
  src: url('../fonts/rajdhani/Rajdhani-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Rajdhani';
  src: url('../fonts/rajdhani/Rajdhani-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Rajdhani';
  src: url('../fonts/rajdhani/Rajdhani-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

/* Fonts End */

/* Roots */
:root {
  --primary-color: #f68932;
  --gray: #ebebeb;
  --black: #282828;
  --blue: #8594b0;
}

/* Roots End */

/* General */
body {
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
  padding-top: var(--header-height, 0px) !important;
  transition: padding-top 0.3s ease;
}

ul {
  list-style-type: none;
  padding-left: 0;
}

a {
  color: initial;
  text-decoration: none;
}

.form-control:focus,
.form-select:focus {
  outline: none;
  box-shadow: none;
  border: 1px solid var(--primary-color);
}

.form-check-input:focus {
  box-shadow: none;
}

#page-content {
  width: 100%;
  overflow: hidden;
}

input[type='search']::-webkit-search-decoration,
input[type='search']::-webkit-search-cancel-button,
input[type='search']::-webkit-search-results-button,
input[type='search']::-webkit-search-results-decoration {
  display: none;
}

.cursor-pointer {
  cursor: pointer;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.text-primary {
  color: var(--primary-color) !important;
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

/* Firefox */
input[type='number'] {
  -moz-appearance: textfield;
  appearance: none;
}

button:focus {
  box-shadow: none !important;
}

.py-set {
  padding: 5rem 0;
}

/* General End */

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #fff;
  transition: transform 0.3s ease;
}

header.sticky {
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

header.sticky .header-top {
  display: none;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

header .header-top {
  background-color: var(--primary-color);
  padding: 4px 0;
  transition: all 0.3s ease;
}

header .header-top .wrapper ul li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

header .header-top .wrapper ul li .icon * {
  height: 35px;
}

header .header-top .wrapper ul li .text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

header .header-top .wrapper ul li .text span {
  display: block;
  line-height: 1;
  color: #fff;
}

header .header-top .wrapper ul li .text .name {
  font-size: 12px;
}

header .header-top .wrapper ul li .text .bold-text {
  font-size: 16px;
  font-weight: 600;
}

header .main-header {
  transition: all 0.3s ease;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

header .main-header .brand-logo img {
  height: 45px;
  width: auto;
  transition: all 0.3s ease;
}

header .main-header .header-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

header .main-header .header-wrapper .search-box {
  flex: 1;
  position: relative;
  z-index: 99;
}

header .main-header .header-wrapper .search-box .input-group .btn {
  border: 1px solid #dee2e6;
  background-color: #f8f9fb;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

header .main-header .header-wrapper .search-box .input-group .btn:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

header .main-header .header-wrapper .search-box .input-group .btn:hover svg {
  fill: #fff;
  transform: scale(1.2);
}

header .main-header .header-wrapper .search-box .input-group .btn svg {
  transition: all 0.3s ease;
}

header .main-header .header-wrapper .search-box .input-group .form-control {
  font-size: 14px;
  font-weight: 600;
  color: #b1abab;
  height: 45px;
}

header
  .main-header
  .header-wrapper
  .search-box
  .input-group
  .form-control::placeholder {
  font-size: 14px;
  font-weight: 600;
  color: #b1abab;
  height: 45px;
}

header .header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

header .header-actions .header-buttons {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

header .header-actions .header-buttons .btn {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  position: relative;
  padding: 0.5rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  border: 1px solid #dee2e6;
  padding: 0px 15px;
  height: 40px;
}

header .header-actions .header-buttons .btn span:not(.btn-label) {
  font-size: 16px;
  font-weight: 600;
}

header .header-actions .header-buttons .btn:hover {
  background-color: var(--gray);
}

header .header-actions .header-buttons .btn .btn-label {
  font-size: 12px;
  font-weight: 500;
}

header .header-actions .header-buttons .btn .btn-label {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--primary-color);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 10px;
  line-height: 1;
}

/* Compact header state */
header.compact .header-top {
  height: 0;
  padding: 0 !important;
  overflow: hidden;
}

header.compact .main-header {
 /* padding: 8px 0;*/
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

header.compact .main-header .fixed-height {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

header.compact .main-header .brand-logo img {
  height: 35px;
}

header.compact .header-actions .header-buttons .btn {
  height: 32px;
  padding: 0 10px;
}

/* Header Mega Menu */
.header-mega-menu {
  background: #fff;
  padding: 1rem 0;
  background-color: var(--gray);
}

.header-mega-menu .bold-menu,
.header-mega-menu .light-menu {
  display: flex;
  align-items: center;
  margin: 0;
  height: 100%;
}

.header-mega-menu .bold-menu {
  gap: 2rem;
}

.header-mega-menu .light-menu {
  justify-content: center;
  flex-wrap: wrap;
}

.header-mega-menu .light-menu li {
  display: flex;
  align-items: center;
  border-right: 1px solid var(--black);
  margin-right: 0.75rem;
  padding-right: 0.75rem;
}

.header-mega-menu .light-menu li:last-child {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}

.header-mega-menu .bold-menu li a.menu-button {
  background-color: #dd3437;
  padding: 10px 25px;
  border-radius: 2px;
  color: #fff;
  border: 1px solid #dd3437;
  transition: allease 0.3s;
  display: flex;
  width: 195px;
  align-items: center;
  justify-content: center;
  height: 40px;
}

.header-mega-menu .bold-menu li a.menu-button svg {
  width: 16px;
  height: 16px;
  margin-right: 5px;
}

.header-mega-menu .bold-menu li a.menu-button:hover {
  color: #dd3437;
  background-color: #fff;
  transition: all ease 0.3s;
}

.header-mega-menu .bold-menu li a.menu-button:hover svg {
  fill: #dd3437;
}

.header-mega-menu .bold-menu li a {
  color: var(--black);
  font-weight: 700;
  font-size: 15px;
  transition: color 0.3s ease;
  white-space: nowrap;
  padding-bottom: 0;
  height: 30px;
  line-height: 30px !important;
}

.brand-list.main-group li a {
  height: 35px;
  line-height: 35px !important;
}

.header-mega-menu .light-menu li a {
  color: var(--black);
  font-weight: 500;
  font-size: 15px;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.header-mega-menu .bold-menu li a:hover,
.header-mega-menu .light-menu li a:hover {
  color: var(--primary-color);
}

/* Header Mega Menu */
.header-mega-menu {
  background: var(--gray);
  padding: 1rem 0;
  position: relative;
}

.menu-trigger {
  display: none;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  color: var(--black);
  font-weight: 600;
  font-size: 15px;
  padding: 0.5rem;
  margin-bottom: 0.5rem;
  cursor: pointer;
}

.menu-trigger:hover {
  color: var(--primary-color);
}

.menu-trigger svg {
  transition: transform 0.3s ease;
}

.menu-trigger.active svg {
  transform: rotate(90deg);
}

/* Mobile Menu Trigger */
.menu-trigger {
  width: 24px;
  height: 24px;
  position: relative;
  background: none;
  border: none;
  padding: 0;
  z-index: 1001;
}

.menu-trigger span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: var(--black);
  left: 0;
  transform-origin: left center;
  transition: 0.25s ease-in-out;
}

.menu-trigger span:nth-child(1) {
  top: 4px;
}

.menu-trigger span:nth-child(2) {
  top: 11px;
}

.menu-trigger span:nth-child(3) {
  top: 18px;
}

/* Açık durumdaki animasyon */
.menu-trigger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 3px;
  left: 3px;
}

.menu-trigger.active span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

.menu-trigger.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 19px;
  left: 3px;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -280px;
  width: 280px;
  height: 100%;
  background: #fff;
  z-index: 1002;
  transition: 0.3s ease;
  overflow-y: auto;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
  left: 0;
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-content {
  padding: 1rem;
}

.mobile-menu-header {
  padding: 1rem;
  border-bottom: 1px solid var(--gray);
  margin: -1rem -1rem 1rem;
}

.mobile-menu-header .brand-logo {
  padding: 0 1.5rem;
}

.mobile-menu-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-menu-item {
  border-bottom: 1px solid var(--gray);
}

.mobile-menu-link {
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
  padding: 12px 0;
  color: var(--black);
  font-weight: 500;
  transition: 0.3s ease;
}

.mobile-menu-link:hover {
  color: var(--primary-color);
}

.submenu-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 12px 0;
  transition: 0.3s ease;
  cursor: pointer;
  text-align: left;
  color: var(--black);
  font-weight: 500;
}

.submenu-toggle:hover {
  color: var(--primary-color);
}

.submenu-toggle svg {
  width: 16px;
  height: 16px;
  transition: 0.3s ease;
  flex-shrink: 0;
  fill: currentColor;
}

.submenu-toggle.active svg {
  transform: rotate(180deg);
}

.submenu-toggle.active {
  color: var(--primary-color);
}

.mobile-submenu {
  display: none;
  padding-left: 1rem;
  margin: 0;
  list-style: none;
  border-left: 2px solid var(--gray);
  background-color: rgba(0, 0, 0, 0.02);
}

.mobile-submenu.active {
  display: block;
  animation: slideDown 0.3s ease;
}

.mobile-submenu .mobile-menu-link {
  font-size: 14px;
  padding: 8px 0;
  color: var(--black);
  text-decoration: none;
  transition: color 0.3s ease;
}

.mobile-submenu .mobile-menu-link:hover {
  color: var(--primary-color);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Breadcrumb */
.breadcrumbs {
  background-color: #ebebeb4d;
  border-bottom: 1px solid #ddd;
}

@media (min-width: 992px) {
  .breadcrumbs {
    top: 180px;
    z-index: 999;
    transition: top 0.3s ease;
  }
  
  /* Header compact olduğunda top pozisyonunu ayarla */
  header.compact ~ * .breadcrumbs,
  header.compact + * .breadcrumbs {
    top: 115px;
  }
}

.breadcrumbs ul {
  margin-bottom: 0;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  max-width: 100%;
  overflow: hidden;
}

.breadcrumbs ul li {
  height: 50px;
  /* line-height: 50px; */
}

.breadcrumbs ul li a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--blue);
  font-weight: 500;
  font-size: 14px;
  position: relative;
  transition: all 0.3s ease;
}

.breadcrumbs ul li a:hover {
  color: var(--primary-color);
}

.breadcrumbs ul li a svg {
  fill: var(--blue);
  width: 14px;
  height: 14px;
  transition: all 0.3s ease;
}

.breadcrumbs ul li a:hover svg {
  fill: var(--primary-color);
}

.breadcrumbs ul li a span {
  display: block;
  white-space: nowrap;
  position: relative;
}

.breadcrumbs ul li a span::after {
  content: '';
  position: absolute;
  bottom: 15px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.breadcrumbs ul li a:hover span::after {
  width: 100%;
}

.breadcrumbs ul li:last-child a {
  opacity: 0.7;
}

.breadcrumbs ul li:last-child a svg {
  display: none;
}

.breadcrumb-nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 99;
  min-width: 200px;
  max-width: 300px;
  margin-top: 4px;
}

.breadcrumb-nav-dropdown ul {
  list-style: none;
  padding: 8px 0;
  margin: 0;
  display: block;
}

.breadcrumb-nav-dropdown ul li {
  margin: 0;
  display: block;
}

.breadcrumb-nav-dropdown ul li a {
  display: block;
  padding: 8px 16px;
  color: #333;
  text-decoration: none;
  cursor: pointer;
}

.breadcrumb-nav-dropdown ul li a:hover {
  background-color: #fff3e0;
}

.breadcrumb-nav-dropdown ul li a.active {
  background-color: #ffe0b2;
  color: #f58933;
  font-weight: 500;
}

/* Breadcrumb End*/

/* Product Slider */
.product-slider {
  width: 100%;
  position: relative;
}

.product-slider .mainSwiper {
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #ddd;
  position: relative;
}

.product-slider .mainSwiper .swiper-slide {
  aspect-ratio: 1/1;
  cursor: crosshair;
}

.similar-products-slider img {
  width: 100% !important;
  height: 100%;
  object-fit: cover;
}

.product-slider .mainSwiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-slider .thumbSwiper {
  width: 100%;
  padding: 0.5rem 0;
}

.product-slider .thumbSwiper .swiper-slide {
  width: 20%;
  aspect-ratio: 1/1;
  opacity: 0.4;
  border: 2px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.product-slider .thumbSwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.product-slider .thumbSwiper .swiper-slide-thumb-active {
  opacity: 1;
  border-color: var(--primary-color);
}

.product-slider .slider-label {
  background-color: var(--primary-color);
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 3;
  padding: 5px 12px;
  border-radius: 8px;
  color: #fff;
  font-weight: 500;
  opacity: 1;
}

.img-zoom-result {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  right: 0;
  aspect-ratio: 1/1;
  border: 1px solid #ddd;
  border-radius: 8px;
  display: none;
  z-index: 999;
  background-color: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  transition: all 0.3s ease;
}

.img-zoom-lens {
  display: none !important;
}

.product-slider {
  position: relative;
}

.product-detail .title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 1rem;
}

.product-detail .detail-list {
  margin-bottom: 0;
}

.product-detail .detail-list li {
  padding: 10px;
  display: flex;
  border-bottom: 1px solid #ddd;
}

.product-detail .detail-list li > span {
  flex: 1;
}

.product-detail .detail-list li:nth-child(odd) {
  background-color: #f8f9fb;
}

.product-detail .detail-list .product-price {
  color: var(--primary-color);
  font-weight: 600;
}

@media (max-width: 992px) {
  .img-zoom-result {
    position: fixed;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: 300px;
    aspect-ratio: unset;
  }
}

@media (max-width: 768px) {
  .img-zoom-result {
    width: 250px;
    height: 250px;
  }

  .header-top {
    display: none;
  }

  .account-menu .menu-wrapper {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 576px) {
  .img-zoom-result {
    display: none !important;
  }

  .mobile-w-100-btn > button {
    width: 100%;
  }
}

@media (max-width: 991px) {
  .product-slider .mainSwiper .swiper-slide {
    cursor: default;
  }

  .img-zoom-result {
    display: none !important;
  }

  .product-slider .mainSwiper .swiper-slide img {
    pointer-events: none;
  }
}

/* Content End */

/* Footer */
footer {
  background-color: var(--gray);
}

footer .footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 3rem 0;
}

footer .footer-wrapper .footer-menubox {
  flex: 1 1 calc(20% - 1.5rem);
  min-width: 160px;
}

@media (max-width: 992px) {
  footer .footer-wrapper {
    gap: 2rem;
  }

  footer .footer-wrapper .footer-menubox {
    flex: 1 1 calc(50% - 1rem);
    min-width: 200px;
  }
}

@media (max-width: 576px) {
  footer .footer-wrapper {
    gap: 2rem;
  }

  footer .footer-wrapper .footer-menubox {
    flex: 1 1 100%;
  }
}

footer .footer-wrapper .footer-menubox h5 {
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Footer menu styles */
.menu-footer li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  transition: all 0.3s ease;
}

.menu-footer li a svg {
  width: 16px;
  height: 16px;
  transform: translateX(-5px);
  opacity: 1;
  transition: all 0.3s ease;
}

.menu-footer li a:hover {
  color: var(--primary-color);
}

.menu-footer li a:hover svg {
  transform: translateX(0);
  opacity: 1;
  fill: var(--primary-color);
}

.menu-footer li a span {
  transition: all 0.3s ease;
}

.menu-footer li a:hover span {
  transform: translateX(5px);
}

/* Footer End */

/* Footer Copyright */
.footer-copyright {
  padding: 1.5rem 0;
  border-top: 1px solid #ddd;
  background: #fff;
}

.copyright-wrapper {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.copyright-col {
  flex: 1;
  font-size: 14px;
}

copyright-col:first-child {
  flex: 2;
}

.copyright-text {
  display: block;
  margin-bottom: 0.5rem;
  color: #666;
}

.copyright-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  color: #666;
}

.copyright-contact a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

copyright-contact a:hover {
  color: #e07722;
}

.separator {
  color: #ddd;
}

.rate-change {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: var(--gray);
  color: var(--black);
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.rate-change:hover {
  background: var(--primary-color);
  color: #fff;
}

.exa-logo {
  display: inline-block;
  transition: opacity 0.3s ease;
}

.exa-logo:hover {
  opacity: 0.8;
}

.exa-logo img {
  height: 30px;
  width: auto;
}

/* Footer Copyright Responsive */
@media (max-width: 992px) {
  .copyright-wrapper {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .copyright-col {
    flex: 1 1 100%;
  }

  .copyright-contact {
    justify-content: center;
  }

  .text-end {
    text-align: center !important;
  }

  header.compact .main-header .fixed-height {
    padding-bottom: 3rem !important;
  }
}

@media (max-width: 576px) {
  .copyright-contact {
    flex-direction: column;
    gap: 0.5rem;
  }

  .separator {
    display: none;
  }

  .copyright-text {
    font-size: 13px;
  }

  header .main-header .brand-logo img {
    width: 160px;
  }

  header.sticky .d-flex.position-relative {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }
}

/* Dropdown styles */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  min-width: 200px;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  border-radius: 4px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--gray);
  z-index: 1000;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-menu ul li a {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--black);
  transition: all 0.3s ease;
}

.dropdown-menu ul li a:hover {
  background: var(--gray);
  color: var(--primary-color);
}


.category-mega-dropdown {
   /* display: block; */
    position: absolute;
    box-shadow: none;
    left: 0;
    top: 100%;
    margin-top: 1.22rem;
    width: auto;
    /* min-width: 280px; */
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    /* border-radius: 8px; */
    padding: 10px;
    z-index: 1050;
}

.category-mega-dropdown.show {
  display: block;
}

.category-mega-dropdown .main-list {
  position: relative;
}

.category-mega-dropdown .categories-list {
  margin: 0;
  padding: 0.25rem 0;
  width: 100%;
}

.category-mega-dropdown .sub-categories {
   /* display: none; */
    position: absolute;
    left: calc(100% - 5px);
    top: -11px;
    width: 1102px;
    min-height: 559px;
    background: #fff;
    border: 1px solid #e5e5e5;
    /* border-radius: 8px; */
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    margin-left: 15px;
    box-shadow: none;
}

.category-mega-dropdown .main-list:has(.categories-list li:hover) {
  width: auto;
}

.category-mega-dropdown .main-list:has(.categories-list li:hover) .sub-categories {
  display: block !important;
}

.category-mega-dropdown .sub-categories:hover {
  display: block !important;
}

.category-mega-dropdown .featured-products .row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -6px;
  align-items: stretch;
  width: 100%;
  box-sizing: border-box;
}

.category-mega-dropdown .featured-products .row > div {
  flex: 0 0 25%;
  max-width: 25%;
  padding: 0 6px;
  margin-bottom: 12px;
  display: flex;
  box-sizing: border-box;
}

.category-mega-dropdown .featured-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  width: 100%;
  min-height: 200px;
  padding: 10px;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  transition: all 0.2s ease;
  background: #fff ;
  box-sizing: border-box;
  overflow: hidden;
}

.category-mega-dropdown .featured-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.category-mega-dropdown .featured-image {
  width: 100%;
  height: 130px;
  min-height: 130px;
  max-height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  background: #f8f9fa;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  box-sizing: border-box;
}

.category-mega-dropdown .featured-image img {
  max-width: 95%;
  max-height: 95%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  margin: auto;
}

.category-mega-dropdown .featured-title {
  font-size: 12px;
  color: #282828;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4;
  min-height: 34px;
  max-height: 34px;
  text-align: center;
  margin: 0;
  padding: 0 4px;
  width: 100%;
  box-sizing: border-box;
}

/* Header dropdown - subcategory list overrides */
.category-mega-dropdown .subcategory-list ul li {
  padding: 0;
}

.category-mega-dropdown .subcategory-list ul li a {
  padding: 0;
}

/* Left Sidebar - Category List */
.category-list-wrapper {
  min-width: 280px;
  max-width: 280px;
  background: #f8f9fa;
  border-right: 1px solid #dee2e6;
  overflow-y: auto;
  max-height: 500px;
  padding: 0;
  scrollbar-width: thin;
  scrollbar-color: #cbd5e0 #f8f9fa;
}

.category-list-wrapper::-webkit-scrollbar {
  width: 6px;
}

.category-list-wrapper::-webkit-scrollbar-track {
  background: #f8f9fa;
}

.category-list-wrapper::-webkit-scrollbar-thumb {
  background: #cbd5e0;
  border-radius: 3px;
}

.category-list-wrapper::-webkit-scrollbar-thumb:hover {
  background: #a0aec0;
}

.category-sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-sidebar-list li {
  margin: 0;
  padding: 0;
}

.category-sidebar-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  color: #212529;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.2s ease;
  border-bottom: 1px solid #e9ecef;
  position: relative;
}

.category-sidebar-list li a svg {
  margin-left: auto;
  flex-shrink: 0;
  opacity: 0.8;
}

.category-sidebar-list li:not(.active) a:hover {
  background-color: #e9ecef;
  color: #212529;
}

.category-sidebar-list li.active a {
  background-color: #1e3a8a;
  color: #ffffff;
  font-weight: 500;
  border-bottom-color: #1e3a8a;
}

.category-sidebar-list li.active a svg {
  fill: #ffffff;
  opacity: 1;
}

/* Right Content Panel */
.category-mega-content {
  flex: 1;
  padding: 28px 36px;
  background: #ffffff;
  min-height: 400px;
  overflow-y: auto;
  max-height: 500px;
  scrollbar-width: thin;
  scrollbar-color: #cbd5e0 #ffffff;
}

.category-mega-content::-webkit-scrollbar {
  width: 6px;
}

.category-mega-content::-webkit-scrollbar-track {
  background: #ffffff;
}

.category-mega-content::-webkit-scrollbar-thumb {
  background: #cbd5e0;
  border-radius: 3px;
}

.category-mega-content::-webkit-scrollbar-thumb:hover {
  background: #a0aec0;
}

.category-mega-content .loading-spinner {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
}

.category-title {
  font-size: 22px;
  font-weight: 600;
  color: #212529;
  margin: 0 0 28px 0;
  padding-bottom: 16px;
  border-bottom: 2px solid #dee2e6;
}

/* Mega Content Grid */
.mega-content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  align-items: start;
}

.mega-content-column {
  min-width: 0;
}

/* Subcategory Groups */
.subcategory-group {
  margin-bottom: 28px;
}

.subcategory-heading {
  font-size: 15px;
  font-weight: 600;
  color: #1e3a8a;
  margin: 0 0 14px 0;
  padding: 0;
  line-height: 1.4;
}

.subcategory-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.subcategory-items li {
  margin-bottom: 10px;
}

.subcategory-items li a {
  color: #495057;
  text-decoration: none;
  font-size: 13px;
  display: block;
  padding: 6px 0;
  transition: color 0.2s ease;
  line-height: 1.5;
}

.subcategory-items li a:hover {
  color: #1e3a8a;
  text-decoration: underline;
}

/* Related Products Section */
.related-products-section {
  margin-bottom: 28px;
}

.section-heading {
  font-size: 15px;
  font-weight: 600;
  color: #1e3a8a;
  margin: 0 0 14px 0;
  padding: 0;
  line-height: 1.4;
}

.related-products-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.related-products-list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 16px;
}

.related-products-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #495057;
  font-size: 18px;
  line-height: 1.2;
}

.related-products-list li a {
  color: #495057;
  text-decoration: none;
  font-size: 13px;
  display: block;
  padding: 4px 0;
  transition: color 0.2s ease;
  line-height: 1.5;
}

.related-products-list li a:hover {
  color: #1e3a8a;
  text-decoration: underline;
}

/* Promotional Column */
.promotional-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.promotional-blocks {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.promotional-block {
  background: #ffffff;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 20px;
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.2s ease;
}

.promotional-block:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.promotional-content {
  width: 100%;
  text-align: center;
  position: relative;
}

.promotional-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 100px;
}

.promotional-logo img {
  max-width: 100%;
  max-height: 100px;
  object-fit: contain;
  filter: grayscale(0);
  transition: filter 0.2s ease;
}

.promotional-logo span {
  font-size: 18px;
  font-weight: 600;
  color: #212529;
}

/* Position relative for dropdown parent */
.header-buttons li {
  position: relative;
}

/* Switch Button */
.switch-button .switch {
  position: relative;
  display: inline-block;
  width: 27px;
  height: 45px;
  margin: 0;
}

.switch-button .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.switch-button .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 5px 0;
}

.switch-button .slider:before {
  position: absolute;
  content: '';
  height: 21px;
  width: 21px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 4px;
}

.switch-button .slider .on,
.switch-button .slider .off {
  color: white;
  font-size: 10px;
  font-weight: 600;
  z-index: 1;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.switch-button input:checked + .slider {
  background-color: var(--primary-color);
}

.switch-button input:checked + .slider:before {
  transform: translateY(-17px);
}

/* Switch Button End */

/* Quantity Selector */
.product-pcs {
  display: flex;
  align-items: center;
  width: fit-content;
  border: 1px solid var(--gray);
  border-radius: 4px;
  overflow: hidden;
}

.product-pcs button {
  border: none;
  background: none;
  padding: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.product-pcs button:hover {
  background-color: var(--gray);
}

.product-pcs button:hover svg {
  fill: var(--primary-color);
}

.product-pcs button svg {
  width: 20px;
  height: 20px;
  fill: var(--black);
  transition: all 0.3s ease;
}

.product-pcs .quantity-input {
  width: 60px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--gray);
  border-right: 1px solid var(--gray);
  border-radius: 0;
  font-weight: 600;
  padding: 0;
  -moz-appearance: textfield;
  appearance: none;
}

.product-pcs .quantity-input::-webkit-outer-spin-button,
.product-pcs .quantity-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.product-pcs .quantity-input:focus {
  outline: none;
  box-shadow: none;
}

.product-actions ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

/* Button Styles */
.secondary-button,
.primary-button,
.tertiary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 25px;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
  min-width: 150px;
  height: 45px;
}

.secondary-button svg,
.primary-button svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.secondary-button {
  background-color: var(--gray);
  color: var(--black);
  border: 1px solid transparent;
}

.secondary-button:hover {
  background-color: #ddd;
}

.secondary-button:hover svg {
  transform: translateX(3px);
}

.primary-button {
  background-color: var(--primary-color);
  color: #fff;
  border: 1px solid transparent;
}

.primary-button svg {
  fill: #fff;
}

.primary-button:hover {
  background-color: #e07722;
}

.primary-button:hover svg {
  transform: translateX(3px);
}

.tertiary-button {
  background-color: transparent;
  color: var(--black);
  border: 1px solid var(--gray);
  font-weight: 500;
  min-width: 120px;
  padding: 8px 20px;
}

.tertiary-button svg {
  width: 16px;
  height: 16px;
  fill: var(--black);
  transition: all 0.3s ease;
}

.tertiary-button:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  background-color: var(--gray);
}

.tertiary-button:hover svg {
  fill: var(--primary-color);
  transform: translateX(3px);
}

/* Product Specs Tab */
.product-specs-tab {
  background-color: var(--gray);
}

.product-specs-tab .nav-tabs {
  border: none;
  gap: 1rem;
}

.product-specs-tab .nav-item {
  margin: 0;
}

.product-specs-tab .nav-link {
  border: none;
  padding: 12px 25px;
  color: var(--black);
  font-weight: 500;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.product-specs-tab .nav-link:hover {
  background-color: var(--gray);
  color: var(--primary-color);
}

.product-specs-tab .nav-link.active {
  background-color: var(--primary-color);
  color: #fff;
}

.product-specs-tab .tab-content {
  padding: 2rem 0;
}

.product-specs-tab .content-wrapper {
  background-color: #f8f9fb;
  border-radius: 8px;
  padding: 2rem;
}

/* Text Content Styles */
.text-content {
  color: var(--black);
  line-height: 1.6;
}

.text-content h1,
.text-content h2,
.text-content h3,
.text-content h4,
.text-content h5,
.text-content h6 {
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1.3;
}

.text-content h1 {
  font-size: 2.5rem;
}

.text-content h2 {
  font-size: 2rem;
}

.text-content h3 {
  font-size: 1.75rem;
}

.text-content h4 {
  font-size: 1.5rem;
}

.text-content h5 {
  font-size: 1.25rem;
}

.text-content h6 {
  font-size: 1rem;
}

.text-content p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.text-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1.5rem 0;
}

.text-content iframe,
.text-content video {
  max-width: 100%;
  border-radius: 8px;
  margin: 1.5rem 0;
}

.text-content ul,
.text-content ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.text-content ul li,
.text-content ol li {
  margin-bottom: 0.5rem;
  list-style-type: disc;
}

.text-content ol li {
  list-style-type: decimal;
}

.text-content a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.text-content a:hover {
  text-decoration: underline;
}

.text-content blockquote {
  border-left: 4px solid var(--primary-color);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background-color: var(--gray);
  font-style: italic;
}

.text-content pre,
.text-content code {
  background-color: var(--gray);
  padding: 1rem;
  border-radius: 4px;
  font-family: monospace;
  white-space: pre-wrap;
  margin: 1rem 0;
}

.text-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}

.text-content table th,
.text-content table td {
  border: 1px solid #ddd;
  padding: 0.75rem;
  text-align: left;
}

.text-content table th {
  background-color: var(--gray);
  font-weight: 600;
}

.text-content hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 2rem 0;
}

/* Responsive text sizes */
@media (max-width: 768px) {
  .text-content h1 {
    font-size: 2rem;
  }

  .text-content h2 {
    font-size: 1.75rem;
  }

  .text-content h3 {
    font-size: 1.5rem;
  }

  .text-content h4 {
    font-size: 1.25rem;
  }

  .text-content h5 {
    font-size: 1.1rem;
  }

  .text-content h6 {
    font-size: 1rem;
  }
}

/* Product Specs Table */
.product-specs-table {
  width: 100%;
  border-collapse: collapse;
  border: none;
}

.product-specs-table th {
  background-color: var(--primary-color);
  color: #fff;
  font-weight: 600;
  padding: 15px 20px;
  text-align: left;
  font-size: 18px;
}

.product-specs-table td {
  padding: 6px 20px;
  border: none;
  font-size: 15px;
}

.product-specs-table td:first-child {
  font-weight: 500;
  width: 200px;
  color: var(--black);
}

.product-specs-table td:last-child {
  color: #666;
}

.product-specs-table tr:nth-child(odd) {
  background-color: #fff;
}

.product-specs-table tr:nth-child(even) {
  background-color: var(--gray);
}

.product-specs-table tr:hover {
  background-color: #f5f5f5;
}

@media (max-width: 768px) {
  .product-specs-table td {
    padding: 10px 15px;
    font-size: 14px;
  }

  .product-specs-table td:first-child {
    width: 140px;
  }
}

@media (max-width: 576px) {
  .product-specs-table td {
    padding: 8px 12px;
    font-size: 13px;
  }

  .product-specs-table td:first-child {
    width: 120px;
  }
}

/* PDF Viewer Styles */
.pdf-viewer,
.pdf-list,
.pdf-preview,
.pdf-placeholder {
  display: none;
}

/* Single PDF Viewer Styles */
.single-pdf-viewer {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--gray);
}

.single-pdf-viewer .pdf-header {
  padding: 1rem;
  border-bottom: 1px solid var(--gray);
  background: #f8f9fb;
}

.single-pdf-viewer .pdf-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.single-pdf-viewer .pdf-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray);
  border-radius: 8px;
  color: var(--primary-color);
}

.single-pdf-viewer .pdf-title {
  flex: 1;
}

single-pdf-viewer .pdf-title h6 {
  margin: 0 0 5px 0;
  font-weight: 600;
}

.single-pdf-viewer .pdf-title span {
  font-size: 13px;
  color: #666;
}

single-pdf-viewer .download-pdf {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 8px 16px;
  border-radius: 4px;
  color: var(--black);
  transition: all 0.3s ease;
  background: var(--gray);
}

.single-pdf-viewer .download-pdf:hover {
  background: var(--primary-color);
  color: #fff;
}

.single-pdf-viewer .pdf-content {
  height: 800px;
  position: relative;
}

.single-pdf-viewer .pdf-content iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 768px) {
  .single-pdf-viewer .pdf-content {
    height: 600px;
  }
}

@media (max-width: 768px) {
  .single-pdf-viewer .pdf-content {
    height: 500px;
  }

  .single-pdf-viewer .pdf-info {
    flex-wrap: wrap;
  }

  .single-pdf-viewer .download-pdf {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
  }
}

/* Payment Tabs Styles */
#payment-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  border: none;
}

#payment-tabs .nav-item {
  margin: 0;
}

#payment-tabs .nav-link {
  padding: 0.5rem;
  border: 1px solid var(--gray);
  border-radius: 8px;
  min-width: 120px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

#payment-tabs .nav-link img {
  max-width: 100%;
  max-height: 40px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease;
}

#payment-tabs .nav-link:hover {
  border-color: var(--primary-color);
}

#payment-tabs .nav-link:hover img {
  filter: grayscale(0);
  opacity: 1;
}

#payment-tabs .nav-link.active {
  background: none;
  border-color: var(--primary-color);
}

#payment-tabs .nav-link.active img {
  filter: grayscale(0);
  opacity: 1;
}

#payment-tabsContent .tab-pane {
  padding: 2rem;
  background: #fff;
  border-radius: 8px;
  border: 1px solid var(--gray);
}

/* Installment Table Styles */
.installment-table {
  margin-bottom: 1.5rem;
}

.installment-table table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
}

.installment-table thead th {
  background: var(--gray) !;
  color: var(--black);
  padding: 5px 15px;
  font-weight: 600;
  text-align: left;
  font-size: 14px;
}

.installment-table tbody td {
  padding: 8px 15px;
  border-bottom: 1px solid var(--gray);
  vertical-align: middle;
  font-size: 14px;
}

.installment-table .table-header.axess {
  background-color: #ffb71c;
}

.installment-table .table-header.bonus {
  background-color: #00633a;
}

.installment-table .table-header.cardfinans {
  background-color: #2681c0;
}

.installment-table .table-header.cardfinans img {
  height: 18px;
}

.installment-table .table-header.paraf {
  background-color: #00b0dd;
}

.installment-table .table-header.world {
  background-color: #782a90;
}

.installment-table .table-header.kuveytturk {
  background-color: #00623a;
}

.installment-table .table-header.bankkart {
  background-color: #e11931;
}

.installment-table .table-header.bankkart img {
  height: 18px;
}

.installment-table tbody td:first-child img {
  width: 32px;
  height: auto;
}

.installment-table tbody td:first-child span {
  font-weight: 500;
}

.installment-table tbody tr:nth-child(even) {
  background: #f8f9fb;
}

.installment-table tbody tr:hover {
  background: var(--gray);
}

.installment-table .table-header {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  padding: 8px 0;
  height: 45px;
}

.installment-table .table-header img {
  /* filter: brightness(0) invert(1); */
  height: 29px;
}

@media (max-width: 768px) {
  .installment-table {
    overflow-x: auto;
  }

  .installment-table table {
    min-width: 600px;
  }

  .installment-table thead th,
  .installment-table tbody td {
    font-size: 13px;
    padding: 10px 12px;
  }

  .installment-table tbody td:first-child img {
    width: 24px;
  }
}

/* Payment Tabs için güncellemeler */
#payment-tabs {
  gap: 0.5rem;
}

#payment-tabs .nav-link {
  min-width: 100px;
  height: 50px;
  padding: 0.25rem;
  background: #fff;
}

#payment-tabs .nav-link img {
  max-height: 30px;
}

@media (max-width: 768px) {
  .installment-table {
    overflow-x: auto;
  }

  .installment-table table {
    min-width: 500px;
  }

  #payment-tabs .nav-link {
    min-width: 80px;
    height: 40px;
  }

  #payment-tabs .nav-link img {
    max-height: 25px;
  }
}

/* Payment Tabs için ek düzenlemeler */
#payment-tabs {
  gap: 0.5rem;
  justify-content: center;
}

#payment-tabs .nav-item {
  max-width: 120px;
  min-width: 100px;
}

@media (max-width: 768px) {
  #payment-tabs .nav-item {
    min-width: 80px;
  }
}

/* Page View */
.page-view {
  margin: 2rem 0;
  border-radius: 8px;
  overflow: visible;
  border: none;
  background: #fff;
}

.page-view iframe {
  background-color: #fff;
  width: 100%;
  min-height: 100px;
  border: none;
  overflow: hidden;
  transition: height 0.3s ease;
}

@media (max-width: 768px) {
  .page-view iframe {
    min-height: 600px;
  }
}

/* Similar Products Slider */

.similar-products .section-title {
  font-weight: 600;
  color: var(--black);
}

.similar-products-slider {
  margin: 0 -15px;
  padding: 0 15px;
  z-index: 1;
}

.similar-products-slider .swiper-button-next,
.similar-products-slider .swiper-button-prev {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.similar-products-slider .swiper-button-next:after,
.similar-products-slider .swiper-button-prev:after {
  font-size: 16px;
  color: var(--black);
}

.similar-products-slider .swiper-button-next:hover,
.similar-products-slider .swiper-button-prev:hover {
  background-color: var(--primary-color);
}

.similar-products-slider .swiper-button-next:hover:after,
.similar-products-slider .swiper-button-prev:hover:after {
  color: #fff;
}

.product-card {
  display: block;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.product-card:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.product-card .image {
  aspect-ratio: 1/1;
  overflow: hidden;
}

.product-card .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .image img {
  transform: scale(1.05);
}

.product-card .content {
  padding: 1rem;
}

.product-card .content h6 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--black);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 40px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 4;
  -webkit-box-orient: vertical;
}

.product-card .content .price {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 16px;
}

/* Similar Card Styles */
.similar-card {
  position: relative;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid #ffffff;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding-bottom: 60px;
  /* Alt kısımda buton için boşluk bırak */
}

.similar-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.similar-card .similar-image {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #ffffff;
}

.similar-card .similar-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.similar-card:hover .similar-image img {
  transform: scale(1.05);
}

.similar-card .badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--primary-color);
  color: #fff;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 500;
  z-index: 1;
}

.similar-card .actions {
  position: absolute;
  top: 10px;
  right: -40px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  opacity: 0;
  transition: all 0.3s ease;
}

.similar-card:hover .actions {
  right: 10px;
  opacity: 1;
}

.similar-card .action-btn {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  background: #fff;
  border: 1px solid var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.similar-card .action-btn svg {
  width: 16px;
  height: 16px;
  stroke: var(--black);
  transition: all 0.3s ease;
}

.similar-card .action-btn:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.similar-card .action-btn:hover svg {
  stroke: #fff;
}

.similar-card .similar-content {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.similar-card .brand {
  color: var(--blue);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 0.5rem;
  display: inline-block;
}

.similar-card .brand:hover {
  color: var(--primary-color);
}

.similar-card .title {
  margin: 0 0 auto;
  line-height: 1.3;
}

.similar-card .title a {
  color: var(--black);
  font-size: 14px;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 36px;
}

.similar-card .list-features {
  padding: 0 2rem;
  list-style-type: disc;
  font-size: 12px;
}

.similar-card .title a:hover {
  color: var(--primary-color);
}

.similar-card .price-box {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding: 0 1rem;
}

.similar-card .current {
  color: #dd3437;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 25px;
}

.similar-card .old {
  color: #999;
  font-size: 16px;
  text-decoration: line-through;
  display: flex;
  align-items: center;
  gap: 4px;
}

.similar-card .currency {
  font-size: 12px;
  font-weight: 500;
}

.similar-card .cart-button {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  z-index: 2;
}

.similar-card:hover .cart-button {
  transform: translateY(0);
}
@media only screen and (max-width: 600px) {
  .similar-card .cart-button {
    transform: translateY(0);
  }
}

.similar-card .add-to-cart {
  width: 100%;
  height: 40px;
  border: none;
  background: var(--primary-color);
  color: #fff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.similar-card .add-to-cart:hover {
  background: #e07722;
}

.similar-card .add-to-cart svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
}

.ad-slider {
  border: 1px solid #dde4f0;
  border-radius: 4px;
  overflow: hidden;
}

.filter-options label {
  display: block;
  font-weight: bold;
}

.filter-options .form-select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: #fff;
  font-size: 16px;
  color: #333;
}

.filter-options .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
  outline: none;
}

.sticky-filters-header {
  background: #fff;
  border-radius: 0 0 8px 8px;
  position: sticky;
  top: calc(var(--header-height) - 0px);
  z-index: 9;
  padding: 1.5rem;
  border: 1px solid #ebebeb;
  border-top: 0;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.filters-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.filters-header .filter-options {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.filters-header .filters-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: auto;
  padding: 8px 16px;
  height: 40px;
}

.filters-header .filters-toggle svg {
  width: 20px;
  height: 20px;
}

.filters-header .form-select {
  min-width: 200px;
  height: 40px;
  padding: 0 12px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 4px;
  border: 1px solid var(--gray);
}

.filters-header .form-select:focus {
  border-color: var(--primary-color);
}

.filters-header .change-view-type .secondary-button {
  min-width: auto;
}

.filters-header .change-view-type .secondary-button.active svg {
  fill: var(--primary-color);
}

.filters-header .change-view-type {
  gap: 1rem;
}

/* Responsive styles for similar cards */
@media (max-width: 768px) {
  .similar-card .similar-content {
    padding: 0.75rem;
  }

  .similar-card .title a {
    font-size: 13px;
    height: 34px;
  }

  .similar-card .current {
    font-size: 14px;
  }

  .similar-card .old {
    font-size: 12px;
  }
}

/* Rate Change Button */
.rate-change {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--gray);
  color: var(--black);
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.rate-change:hover {
  background: var(--primary-color);
  color: #fff;
}

.rate-change .percent-icon,
.rate-change .arrow-icon {
  fill: currentColor;
  transition: transform 0.3s ease;
}

.rate-change:hover .arrow-icon {
  transform: translateY(-2px);
}

/* Rate Change Popup */
.rate-change-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.rate-change-popup.show {
  display: flex;
}

.popup-content {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  width: 90%;
  max-width: 400px;
  position: relative;
}

.close-popup {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.close-popup:hover {
  transform: rotate(90deg);
}

.close-popup svg {
  fill: var(--black);
}

.popup-content h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 1.5rem;
  padding-right: 2rem;
}

.popup-content .input-group {
  margin-bottom: 1.5rem;
}

.popup-content .input-group input {
  height: 45px;
  font-size: 16px;
  font-weight: 500;
}

.popup-content .input-group-text {
  background: var(--gray);
  border-color: #dee2e6;
  color: var(--black);
  font-weight: 500;
}

.popup-buttons {
  display: flex;
  gap: 1rem;
}

.popup-buttons .btn {
  flex: 1;
  height: 45px;
  font-weight: 500;
}

.popup-buttons .btn-secondary {
  background: var(--gray);
  border: none;
  color: var(--black);
}

.popup-buttons .btn-primary {
  background: var(--primary-color);
  border: none;
}

.popup-buttons .btn-primary:hover {
  background: #e07722;
}

@media (max-width: 576px) {
  .popup-content {
    padding: 1.5rem;
  }

  .popup-content h5 {
    font-size: 16px;
  }

  .popup-buttons {
    flex-direction: column;
  }
}

/* Rate Change Button ve Dropdown */
.rate-change-wrapper {
  position: relative;
  display: inline-block;
}

.rate-change {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--gray);
  color: var(--black);
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.rate-change:hover {
  background: var(--primary-color);
  color: #fff;
}

.rate-change .percent-icon,
.rate-change .arrow-icon {
  fill: currentColor;
  transition: all 0.3s ease;
}

.rate-change.active .arrow-icon {
  transform: rotate(180deg);
}

.rate-change-dropdown {
  position: absolute;
  bottom: calc(100% + 10px);
  /* Butonun üstünde konumlandırma */
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  width: 300px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.rate-change-dropdown::before {
  content: '';
  position: absolute;
  bottom: -6px;
  /* Ok işaretinin konumu değiştirildi */
  left: 50%;
  transform: translateX(-50%) rotate(225deg);
  /* Ok işaretinin yönü değiştirildi */
  width: 12px;
  height: 12px;
  background: #fff;
  border-left: 1px solid #eee;
  border-top: 1px solid #eee;
}

.rate-change-dropdown.show {
  opacity: 1;
  visibility: visible;
}

.dropdown-content {
  padding: 1.5rem;
}

.dropdown-content h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--black);
}

.dropdown-content .input-group {
  margin-bottom: 1rem;
}

.dropdown-content .input-group input {
  height: 40px;
  font-size: 15px;
  font-weight: 500;
}

.dropdown-content .input-group-text {
  background: var(--gray);
  border-color: #dee2e6;
  color: var(--black);
  font-weight: 500;
}

.dropdown-buttons {
  display: flex;
  gap: 0.5rem;
}

.dropdown-buttons .btn {
  flex: 1;
  height: 40px;
  font-size: 14px;
  font-weight: 500;
  padding: 0 16px;
}

.dropdown-buttons .btn-secondary {
  background: var(--gray);
  border: none;
  color: var(--black);
}

.dropdown-buttons .btn-primary {
  background: var(--primary-color);
  border: none;
  color: #fff;
}

.dropdown-buttons .btn-primary:hover {
  background: #e07722;
}

@media (max-width: 576px) {
  .rate-change-dropdown {
    width: 280px;
  }

  .dropdown-content {
    padding: 1rem;
  }

  .dropdown-buttons {
    flex-direction: column;
  }

  .dropdown-buttons .btn {
    width: 100%;
  }
}

/* Mini Cart Styles */
.mini-cart {
  width: 320px;
  padding: 1rem;
}

.cart-items {
  max-height: 300px;
  overflow-y: auto;
}

.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid var (--gray);
  position: relative;
}

.cart-item:last-child {
  border-bottom: none;
}

.item-image {
  width: 60px;
  height: 60px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--gray);
}

.item-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.item-info {
  flex: 1;
  min-width: 0;
}

.item-info h6 {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.item-price {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 4px;
}

.item-price .currency {
  font-size: 12px;
  margin-left: 2px;
}

.item-quantity {
  font-size: 12px;
  color: #666;
}

.remove-item {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 20px;
  height: 20px;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.5;
  transition: all 0.3s ease;
}

.remove-item:hover {
  opacity: 1;
}

.remove-item svg {
  fill: var(--black);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border-top: 1px solid var(--gray);
  font-weight: 600;
}

.total-price {
  color: var(--primary-color);
  font-size: 16px;
}

.total-price .currency {
  font-size: 14px;
  margin-left: 2px;
}

.cart-buttons {
  display: flex;
  gap: 0.5rem;
  padding: 1rem;
}

.cart-buttons .btn {
  flex: 1;
  height: 40px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-buttons .btn-outline {
  border: 1px solid var(--gray);
  background: none;
  color: var(--black);
}

.cart-buttons .btn-outline:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.cart-buttons .btn-primary {
  background: var(--primary-color);
  border: none;
  color: #fff;
}

.cart-buttons .btn-primary:hover {
  background: #e07722;
}

@media (max-width: 576px) {
  .mini-cart {
    width: 280px;
  }
}

/* Notification Dropdown Styles */
.notification-dropdown {
  width: 320px;
  padding: 0;
}

.notifications {
  display: flex;
  flex-direction: column;
}

.notification-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid var(--gray);
}

.notification-header h6 {
  margin: 0;
  font-weight: 600;
  font-size: 16px;
}

.mark-all-read {
  background: none;
  border: none;
  color: var(--primary-color);
  font-size: 13px;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mark-all-read:hover {
  color: #e07722;
}

.notification-list {
  max-height: 360px;
  overflow-y: auto;
}

.notification-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid var(--gray);
  transition: background 0.3s ease;
  position: relative;
}

.notification-item:hover {
  background: #f8f9fb;
}

.notification-item.unread {
  background: #f8f9fb;
}

.notification-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray);
  border-radius: 50%;
  flex-shrink: 0;
}

.notification-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--primary-color);
}

.notification-icon.warning {
  background: #fff3e6;
}

.notification-icon.warning svg {
  fill: #ff9500;
}

.notification-content {
  flex: 1;
  min-width: 0;
}

.notification-content p {
  margin: 0 0 4px;
  font-size: 14px;
  line-height: 1.4;
}

.notification-content .time {
  font-size: 12px;
  color: #666;
}

.mark-read {
  width: 24px;
  height: 24px;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  opacity: 0;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.notification-item:hover .mark-read {
  opacity: 0.5;
}

.mark-read:hover {
  opacity: 1 !important;
}

.mark-read svg {
  fill: var(--primary-color);
}

.notification-footer {
  padding: 1rem;
  text-align: center;
  border-top: 1px solid var(--gray);
}

.view-all {
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.view-all:hover {
  color: #e07722;
}

@media (max-width: 576px) {
  .notification-dropdown {
    width: 280px;
  }
}

.category-page .similar-card {
  margin-bottom: 1.5rem;
  height: auto;
}

.product-list .similar-card {
  margin-bottom: 0;
}

/* Product Actions */
.product-actions {
  transition: all 0.3s ease;
}

.product-actions ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

@media (max-width: 768px) {
  .product-actions ul {
    justify-content: space-between;
    gap: 0.5rem;
  }

  .product-actions .product-pcs {
    width: fit-content;
  }

  .product-actions .tertiary-button {
    width: 100%;
  }

  .product-actions ul li {
    width: calc(50% - 0.25rem);
  }

  .product-actions .secondary-button,
  .product-actions .primary-button {
    width: 100%;
    min-width: unset;
  }

  .product-specs-tab .nav-tabs {
    display: flex;
    justify-content: center;
  }

  /* Body'e padding ekle */
  body {
    padding-bottom: calc(1rem + 45px + 1rem);
  }
}

@media (max-width: 375px) {
  .product-actions {
    padding: 0.75rem;
  }

  .product-actions ul {
    gap: 0.35rem;
  }

  .secondary-button,
  .primary-button {
    padding: 8px 15px;
    font-size: 14px;
  }
}

/* Pagination Styles */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 2rem 0;
}

.pagination .page-button {
  min-width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  background: #fff;
  border: 1px solid var(--gray);
  color: var(--black);
  font-weight: 500;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.pagination .page-button.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

.pagination .page-button:hover:not(.active) {
  background: var(--gray);
  color: var(--primary-color);
}

.pagination .page-button.prev,
.pagination .page-button.next {
  font-size: 0;
}

.pagination .page-button.prev svg,
.pagination .page-button.next svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: transform 0.3s ease;
}

.pagination .page-button.prev:hover svg {
  transform: translateX(-2px);
}

.pagination .page-button.next:hover svg {
  transform: translateX(2px);
}

.pagination .page-button.dots {
  pointer-events: none;
  border: none;
  padding: 0 8px;
}

@media (max-width: 576px) {
  .pagination {
    gap: 0.35rem;
  }

  .pagination .page-button {
    min-width: 35px;
    height: 35px;
    padding: 0 12px;
    font-size: 14px;
  }

  /* İlk 2 ve son 2 sayfayı her zaman göster */
  .pagination .page-button.number:nth-child(n + 4):nth-last-child(n + 4) {
    display: none;
  }

  .pagination .page-button.number.active {
    display: flex;
  }

  .pagination .page-button.prev,
  .pagination .page-button.next,
  .pagination .page-button.dots {
    display: flex;
  }
}

/* Ad Slider Styles */
.ad-slider {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.ad-slider .adSwiper {
  width: 100%;
  border-radius: 8px;
}

.ad-slider .swiper-slide {
  aspect-ratio: 5/1;
}

.ad-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.ad-slider .swiper-button-next,
.ad-slider .swiper-button-prev {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.ad-slider .swiper-button-next:after,
.ad-slider .swiper-button-prev:after {
  font-size: 16px;
  color: var(--black);
}

.ad-slider .swiper-button-next:hover,
.ad-slider .swiper-button-prev:hover {
  background: var(--primary-color);
}

.ad-slider .swiper-button-next:hover:after,
.ad-slider .swiper-button-prev:hover:after {
  color: #fff;
}

@media (max-width: 768px) {
  .ad-slider .swiper-slide {
    aspect-ratio: 16/9;
  }
}

.price-range-filter .price-inputs {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.price-range-filter .price-input {
  position: relative;
  width: 100%;
  border: 0;
}

.price-range-filter .price-input input {
  width: 70%;
  height: 40px;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 0 15px;
  font-size: 14px;
}

.price-range-filter .price-input .currency {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
  font-size: 12px;
}

.price-range-filter .separator {
  color: #666;
}

.price-range-filter .slider {
  height: 5px;
  border-radius: 5px;
  background: #ddd;
  position: relative;
}

.price-range-filter .slider .progress {
  height: 5px;
  left: 0%;
  right: 0%;
  position: absolute;
  border-radius: 5px;
  background: var(--primary-color);
}

.price-range-filter .range-input {
  position: relative;
}

.price-range-filter .range-input input {
  position: absolute;
  top: -5px;
  height: 5px;
  width: 100%;
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
  appearance: none;
}

.price-range-filter input[type='range']::-webkit-slider-thumb {
  height: 17px;
  width: 17px;
  border-radius: 50%;
  pointer-events: auto;
  -webkit-appearance: none;
  background: var(--primary-color);
  cursor: pointer;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px var(--primary-color);
}

.price-range-filter input[type='range']::-moz-range-thumb {
  height: 17px;
  width: 17px;
  border-radius: 50%;
  pointer-events: auto;
  -moz-appearance: none;
  background: var(--primary-color);
  cursor: pointer;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px var(--primary-color);
}

.bestseller-products {
  background: #fff;
  border-radius: 8px;
  margin-bottom: 20px;
}

.bestseller-products .widget-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.bestseller-products .bestseller-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.bestseller-products .bestseller-item {
  border: 1px solid #eee;
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.bestseller-products .bestseller-item:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.bestseller-products .bestseller-link {
  display: flex;
  align-items: center;
  padding: 10px;
  text-decoration: none;
  color: inherit;
}

.bestseller-products .bestseller-image {
  width: 60px;
  height: 60px;
  margin-right: 12px;
  flex-shrink: 0;
}

.bestseller-products .bestseller-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.bestseller-products .bestseller-content {
  flex-grow: 1;
}

.bestseller-products .bestseller-title {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 5px;
  color: #333;
}

.bestseller-products .bestseller-price {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--primary-color);
  font-weight: 600;
}

.bestseller-products .bestseller-price .price {
  font-size: 16px;
}

.bestseller-products .bestseller-price .currency {
  font-size: 14px;
}

.product-tags {
  background: #fff;
}

.product-tags .widget-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.product-tags .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 20px 0;
}

.product-tags .tag {
  background: #f5f5f5;
  color: #282828;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.product-tags .tag:hover {
  background: #e0e0e0;
  color: #000;
}

/* Filter Styles */
.category-filters {
  background: #fff;
  border-radius: 8px;
  border: 1px solid var(--gray);
  padding: 1.5rem;
}

.sticky-filters {
  position: sticky;
  top: calc(var(--header-height) - 20px);
  height: calc(100vh - var(--header-height) - 40px);
  overflow-y: auto;
}

/* Filtre scrollbar stili */
.sticky-filters::-webkit-scrollbar {
  width: 4px;
}

.sticky-filters::-webkit-scrollbar-track {
  background: var(--gray);
}

.sticky-filters::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 4px;
}

/* Responsive düzenlemeler */
@media (max-width: 991px) {
  .sticky-filters {
    position: static;
    height: auto;
    margin-bottom: 1rem;
  }
}

.filter-group {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray);
}

.filter-group:last-child {
  border-bottom: 0;
}

.filter-group:last-child {
  margin-bottom: 0;
}

.filter-group h6 {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.filter-group h6 .clear-filter {
  font-size: 12px;
  color: var(--primary-color);
  font-weight: 500;
  cursor: pointer;
}

.filter-group .filter-list {
  max-height: 200px;
  overflow-y: auto;
  margin: 0;
  padding-right: 10px;
}

.filter-group .filter-list::-webkit-scrollbar {
  width: 4px;
}

.filter-group .filter-list::-webkit-scrollbar-track {
  background: var(--gray);
  border-radius: 10px;
}

.filter-group .filter-list::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 10px;
}

.filter-item {
  margin-bottom: 0.5rem;
}

.filter-item:last-child {
  margin-bottom: 0;
}

.filter-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

/* .filter-checkbox input {
    display: none;
} */

.filter-checkbox .checkbox {
  width: 18px;
  height: 18px;
  border: 2px solid var(--gray);
  border-radius: 4px;
  position: relative;
  transition: all 0.3s ease;
}

.filter-checkbox input:checked + .checkbox {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.filter-checkbox input:checked + .checkbox:after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.filter-checkbox .label {
  font-size: 14px;
  color: var(--black);
  transition: color 0.3s ease;
}

.filter-checkbox:hover .label {
  color: var(--primary-color);
}

.filter-checkbox .count {
  font-size: 12px;
  color: #666;
  margin-left: auto;
}

.close-modal svg {
  width: 20px;
  height: 20px;
  fill: var(--black);
}

/* Filter Modal Styles */
.filter-modal {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100%;
  background: #fff;
  z-index: 1001;
  transition: right 0.3s ease;
}

.close-modal {
  border: 0;
  background-color: transparent;
}

.filter-modal.show {
  right: 0;
}

.filter-modal-content {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.filter-modal-header {
  padding: 1rem;
  border-bottom: 1px solid var(--gray);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.filter-modal-header h5 {
  margin: 0;
  font-weight: 600;
}

.filter-modal #filter-form {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
}

.filter-modal-footer {
  padding: 1rem;
  border-top: 1px solid var(--gray);
  display: flex;
  gap: 1rem;
}

.filter-modal-footer button {
  flex: 1;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-backdrop.show {
  opacity: 1;
  visibility: visible;
}

/* Customer Service Tooltip */
.customer-service {
  position: relative;
  cursor: pointer;
}

.customer-service-tooltip {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  width: 280px;
  padding: 1rem;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  transform: translateY(10px);
}

.customer-service:hover .customer-service-tooltip {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.customer-service-tooltip::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 20px;
  width: 12px;
  height: 12px;
  background: #fff;
  transform: rotate(45deg);
  border-left: 1px solid #eee;
  border-top: 1px solid #eee;
}

.customer-service-tooltip .rep-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray);
}

.customer-service-tooltip .rep-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
}

.customer-service-tooltip .rep-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.customer-service-tooltip .rep-details {
  flex: 1;
}

.customer-service-tooltip .rep-name {
  font-weight: 600;
  font-size: 16px;
  color: var(--black);
  margin-bottom: 4px;
}

.customer-service-tooltip .rep-title {
  font-size: 13px;
  color: var(--blue);
}

.customer-service-tooltip .contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.customer-service-tooltip .contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--black);
  font-size: 14px;
}

.customer-service-tooltip .contact-item svg {
  width: 16px;
  height: 16px;
  fill: var(--primary-color);
}

.customer-service-tooltip .contact-item a {
  color: var(--black);
  transition: color 0.3s ease;
}

.customer-service-tooltip .contact-item a:hover {
  color: var(--primary-color);
}

/* List View Styles */
.product-list.list-view .row {
  margin: 0;
}

.product-list.list-view [class*='col-'] {
  width: 100%;
  max-width: 100%;
  flex: 0 0 100%;
  padding: 0 0 1rem 0;
}

.product-list.list-view .similar-card {
  flex-direction: row;
  padding-bottom: 0;
  min-height: 200px;
  height: auto;
}

.product-list.list-view .similar-card .similar-image {
  width: 200px;
  min-width: 200px;
  flex-shrink: 0;
  aspect-ratio: 1/1;
}

.product-list.list-view .similar-card .similar-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.product-list.list-view .similar-card .list-features {
  padding: 2rem;
}

.product-list.list-view .similar-card .cart-button {
  margin-top: 0 !important;
  padding: 1rem !important;
  display: flex;
  align-items: center;
}

.product-list.list-view .similar-card .title {
  margin: 0.5rem 0;
}

.product-list.list-view .similar-card .title a {
  height: auto;
  -webkit-line-clamp: unset;
  line-clamp: 2;

  white-space: normal;
}

.product-list.list-view .similar-card .price-box {
  margin-top: 0.5rem;
}

.product-list.list-view .similar-card .cart-button {
  position: static;
  padding: 0;
  transform: none;
  margin-top: 1rem;
  width: 200px;
}

/* Responsive adjustments for list view */
@media (max-width: 768px) {
  .product-list.list-view .similar-card {
    min-height: 160px;
  }

  .product-list.list-view .similar-card .similar-image {
    width: 160px;
    min-width: 160px;
  }

  .product-list.list-view .similar-card .similar-content {
    padding: 1rem;
  }

  .product-list.list-view .similar-card .cart-button {
    width: 160px;
  }
}

@media (max-width: 576px) {
  .product-list.list-view .similar-card {
    min-height: 140px;
  }

  .product-list.list-view .similar-card .similar-image {
    width: 120px;
    min-width: 120px;
  }

  .product-list.list-view .similar-card .similar-content {
    padding: 0.75rem;
  }

  .product-list.list-view .similar-card .cart-button {
    width: 120px;
  }

  .product-list.list-view .similar-card .title a {
    font-size: 13px;
  }

  .product-list.list-view .similar-card .price-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Brand Dropdown Styles */
.choose-brand {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brand-dropdown {
  display: none;
  position: absolute;
  top: 30px;
  left: 0;
  width: 280px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--gray);
  z-index: 1000;
  padding: 0.75rem;
}

.brand-dropdown.show {
  display: block;
}

.brand-search {
  position: relative;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray);
}

.brand-search input {
  width: 100%;
  height: 40px;
  padding: 0 15px;
  border: 1px solid var(--gray);
  border-radius: 4px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.brand-search input:focus {
  border-color: var(--primary-color);
  outline: none;
}

.brand-list {
  max-height: 300px;
  overflow-y: auto;
}

.brand-list .li a {
  padding-top: 0 !important;
}

.brand-list::-webkit-scrollbar {
  width: 4px;
}

.brand-list::-webkit-scrollbar-track {
  background: var(--gray);
}

.brand-list::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 4px;
}

.brand-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  color: var(--black);
  font-weight: 500;
  transition: all 0.3s ease;
  font-weight: 500 !important;
  border-radius: 4px;
  padding-top: 0 !important;
  height: 25px;
  line-height: 25px !important;
}

.brand-list li a:hover {
  background: var(--gray);
  color: var(--primary-color);
}

.brand-list li a svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.brand-list li a:hover svg {
  opacity: 1;
  transform: translateX(0);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  border: none;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 999;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--black);
}

/* Search Dropdown Styles */
.search-box {
  position: relative;
  z-index: 1001;
}

.search-dropdown {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 1001;
}

.search-dropdown.show {
  display: block;
}

.search-content {
  display: flex;
  padding: 1.5rem;
  gap: 2rem;
  display: flex;
  padding: 1.5rem;
  gap: 2rem;
}

.search-categories {
  width: 200px;
  border-right: 1px solid var(--gray);
  flex-shrink: 0;
}

.search-results {
  flex: 1;
  max-height: 400px;
  overflow-y: auto;
}

.search-dropdown h6 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #666;
}

.search-categories ul {
  margin: 0;
}

.search-categories ul li a {
  display: block;
  padding: 8px 0;
  color: var(--black);
  font-weight: 500;
  transition: all 0.3s ease;
}

.search-categories ul li a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.search-results ul {
  margin: 0;
  display: flex;
  gap: 1rem;
  flex-direction: column;
}

.search-results ul li {
  width: 100%;
}

.search-results ul li a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 8px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.search-results ul li a:hover {
  background: var(--gray);
}

.search-results ul li a img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 4px;
}

.search-results ul li a span {
  color: var(--black);
  font-size: 13px;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;

  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 768px) {
  .search-content {
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
  }

  .search-categories {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--gray);
    padding-bottom: 1rem;
  }

  .search-results ul {
    grid-template-columns: 1fr;
  }
}

/* Tooltip Styles */
[class*='tooltip-'] {
  position: relative;
}

.tooltip-top:after {
  left: 50%;
  transform: translateX(-50%) translateY(-5px);
  top: -25px;
}

.tooltip-left:after {
  top: 50%;
  transform: translateY(-50%) translateX(-5px);
  left: -10px;
}

.tooltip-right:after {
  top: 50%;
  transform: translateY(-50%) translateX(5px);
  right: -10px;
}

[class*='tooltip-']:after {
  content: attr(data-tooltip);
  position: absolute;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.tooltip-bottom:after {
  left: 50%;
  transform: translateX(-50%) translateY(5px);
  bottom: -25px;
}

[class*='tooltip-']:hover:after {
  opacity: 1;
  visibility: visible;
}

.tooltip-bottom:hover:after {
  transform: translateX(-50%) translateY(0);
}

.card-payment-wrapper {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.card-payment-wrapper .text-content.small-text p {
  font-size: 13px;
}

.card-payment-wrapper .text-content.small-text p::before {
  content: '*';
  padding-right: 5px;
}

.card-wrapper {
  min-height: 250px;
}

.jp-card {
  min-width: 100% !important;
}

.form-label {
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #333;
}

.form-control {
  padding: 0.75rem 1rem;
  border: 1px solid #ced4da;
  border-radius: 0.5rem;
  font-size: 1rem;
}

.form-control:focus {
  border-color: #f68932;
  box-shadow: 0 0 0 0.2rem rgba(246, 137, 50, 0.25);
}

@media (max-width: 576px) {
  .card-payment-wrapper {
    padding: 1rem;
  }

  .card-wrapper {
    min-height: 200px;
  }
}

/* Mobile tooltip adjustments */
@media (max-width: 767px) {
  [class*='tooltip-']:after {
    width: auto;
    white-space: normal;
    max-width: 200px;
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
    bottom: 100%;
    margin-bottom: 5px;
  }

  /* Disable hover on mobile - optional touch handling */
  [class*='tooltip-']:hover:after {
    opacity: 0;
    visibility: hidden;
  }

  /* Add active class for touch devices */
  [class*='tooltip-'].active:after {
    opacity: 1;
    visibility: visible;
  }
}

/* Product List Styles */
.product-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.75rem;
  padding: 0;
  list-style: none;
}

.product-list > li {
  width: calc(50% - 1.5rem);
  margin: 0 0.75rem 1.5rem;
}

/* Tablet */
@media (min-width: 768px) and (max-width: 991px) {
  .product-list > li {
    width: calc(50% - 1.5rem);
  }
}

/* Desktop */
@media (min-width: 992px) {
  .product-list > li {
    width: calc(33.3% - 1.5rem);
  }
}

/* List View ve Table View Styles */
.product-list.list-view {
  display: block;
  margin: 0;
}

.product-list.list-view > li {
  width: 100%;
  margin: 0 0 1rem 0;
}

.product-list.list-view .similar-card {
  flex-direction: row;
  padding-bottom: 0;
  height: auto;
}

.product-list.list-view .similar-card .similar-image {
  width: 200px;
  min-width: 200px;
  aspect-ratio: 1/1;
}

.product-list.list-view .similar-card .similar-content {
  flex: 1;
  padding: 1.5rem;
}

.product-list.list-view .similar-card .title {
  margin: 0.5rem 0;
}

.product-list.list-view .similar-card .title a {
  height: auto;
  -webkit-line-clamp: unset;
  line-clamp: 2;

}

.product-list.list-view .similar-card .cart-button {
  position: static;
  transform: none;
  width: auto;
  padding: 1rem;
}

/* Table View Styles */
.product-list.table-view {
  display: block;
  margin: 0;
}

.product-list.table-view > li {
  width: 100%;
  margin: 0 0 0.5rem 0;
}

.product-list.table-view .similar-card {
  flex-direction: row;
  align-items: center;
  padding: 0.5rem;
  height: auto;
  min-height: 60px;
}

.product-list.table-view .similar-card .similar-image {
  width: 50px;
  min-width: 50px;
  height: 50px;
  aspect-ratio: 1/1;
}

.product-list.table-view .similar-card .similar-content {
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  padding: 0 1rem;
}

.product-list.table-view .similar-card .brand {
  width: 100px;
  margin: 0;
}

.product-list.table-view .similar-card .title {
  width: 300px;
  margin: 0;
}

.product-list.table-view .similar-card .title a {
  height: auto;
  -webkit-line-clamp: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-clamp: 2;

}

.product-list.table-view .similar-card .price-box {
  margin: 0;
  width: 150px;
}

.product-list.table-view .similar-card .cart-button {
  position: static;
  transform: none;
  padding: 0;
  width: auto;
}

.product-list.table-view .similar-card .add-to-cart {
  width: auto;
  padding: 0 1rem;
}

.product-list.table-view .similar-card .similar-image .badge,
.product-list.table-view .similar-card .similar-image .actions,
.product-list.table-view .similar-card .similar-content .brand {
  display: none;
}

.product-list.table-view .similar-card .list-features li {
  display: none;
}

.product-list.table-view .similar-card .list-features li.table-show {
  list-style-type: none;
  display: block;
}

.product-list.list-view .similar-card .list-features li.table-show {
  list-style-type: none;
  display: block;
  margin-top: 1rem;
}



.product-list .similar-card .list-features li.table-show {
  display: none;
}

.product-list.table-view li:not(.data-table) {
  display: none;
}

.left-ad-bar {
  height: 500px;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.left-ad-bar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .product-list.list-view .similar-card .similar-image {
    width: 150px;
    min-width: 150px;
  }

  .product-list.table-view .similar-card .similar-content {
    gap: 1rem;
  }

  .product-list.table-view .similar-card .title {
    width: 200px;
  }
}

@media (max-width: 768px) {
  .product-list.list-view .similar-card {
    flex-direction: column;
  }

  .product-list.list-view .similar-card .similar-image {
    width: 100%;
  }

  .product-list.table-view .similar-card .similar-content {
    flex-wrap: wrap;
  }

  .product-list.table-view .similar-card .title {
    width: 100%;
  }

  .main-slide {
    margin: 1.5rem 0 !important;
  }
}

/* View type buttons visibility */
.change-view-type {
  display: none;
}

@media (min-width: 992px) {
  .change-view-type {
    display: flex;
    gap: 1rem;
  }
}

@media (min-width: 992px) {
  .product-list.list-view {
    display: block;
    margin: 0;
  }

  .product-list.list-view > li {
    width: 100%;
    margin: 0 0 1rem 0;
  }

  .product-list.table-view {
    display: block;
    margin: 0;
  }

  .product-list.table-view > li {
    width: 100%;
    margin: 0 0 0.5rem 0;
  }
}

@media (max-width: 991px) {
  .product-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -0.75rem;
  }

  .product-list > li {
    width: calc(50% - 1.5rem);
    margin: 0 0.75rem 1.5rem;
  }

  .product-list .similar-card {
    flex-direction: column;
    padding-bottom: 60px;
  }
}

/* Responsive */

@media (max-width: 1440px) {
  .header-mega-menu .bold-menu {
    gap: 1rem;
  }

  .header-mega-menu .light-menu {
    gap: 0;
  }

  .header-mega-menu .light-menu li {
    margin-right: 0.5rem;
    padding-right: 0.5rem;
  }

  .header-mega-menu .light-menu li a {
    font-size: 14px;
  }

  .product-list.table-view .similar-card .price-box .old {
    display: none;
  }

  .product-list.table-view .similar-card .similar-content {
    gap: 1rem;
    flex: auto;
    padding-right: 0;
  }

  .product-list.table-view .similar-card .list-features {
    padding: 0 0.75rem;
  }
}

@media (max-width: 1200px) {
  .menu-trigger {
    display: flex;
    margin-bottom: 0 !important;
  }

  .filters-header .form-select {
    min-width: 130px;
  }

  header .header-actions .header-buttons .btn.account-trigger {
    display: none;
  }

  .header-mega-menu {
    display: none;
  }

  .mega-menu-content {
    display: none;
    padding-top: 1rem;
  }

  .mega-menu-content.show {
    display: block;
  }

  .header-mega-menu .row > div {
    margin-bottom: 1rem;
  }

  .header-mega-menu .bold-menu,
  .header-mega-menu .light-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .header-mega-menu .bold-menu li a,
  .header-mega-menu .light-menu li a {
    display: block;
    padding: 0.5rem 0;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .header-mega-menu .light-menu {
    padding-left: 1rem;
  }

  .filters-header {
    flex-direction: column;
  }

  .filters-header .change-view-type {
    gap: 1rem;
    width: 100%;
  }

  .filters-header .change-view-type > * {
    flex: 1;
  }

  .filters-header .filter-options {
    width: 100%;
  }

  .filters-header .filter-options > * {
    flex: 1;
  }

  .product-list.table-view .similar-card .similar-content {
    display: block;
  }
}

@media (max-width: 992px) {
  /* header .main-header {
    padding-bottom: 25px;
  } */

  header .main-header .header-wrapper {
    flex-direction: column;
    gap: 1rem;
  }

  header .main-header .brand-logo {
    text-align: center;
  }

  header .main-header .header-wrapper .search-box {
    width: 90%;
    order: 2;
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1001;
  }

  header.compact .main-header .header-wrapper .search-box {
    bottom: 20px !important;
  }

  header .main-header .header-wrapper .search-box .input-group .form-control {
    height: 30px;
  }

  header .main-header .header-wrapper .search-box .input-group .btn {
    height: 30px;
    padding: 0 10px;
  }

  header .header-actions {
    width: 100%;
    justify-content: center;
  }

  footer .footer-wrapper {
    gap: 2rem;
  }

  footer .footer-wrapper .footer-menubox {
    flex: 1 1 calc(50% - 1rem);
    min-width: 200px;
  }

  .img-zoom-result {
    position: fixed;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: 300px;
    aspect-ratio: unset;
  }

  .filters-header {
    flex-wrap: wrap;
    position: relative;
  }

  header.sticky .main-header .header-wrapper .search-box {
    display: none;
  }

  header.sticky .main-header {
    padding: 5px 0;
  }

  .filters-header .filter-options {
    flex-wrap: nowrap;
  }

  .filters-header .form-select {
    min-width: 180px;
  }

  header.compact .main-header .brand-logo img {
    height: 45px !important;
  }
}

@media (max-width: 768px) {
  header .header-top {
    position: relative;
  }

  header .header-top::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 3px);
    width: 80%;
    height: 1px;
    background-color: var(--gray);
    opacity: 0.5;
    z-index: 1;
  }

  header .header-top .wrapper ul {
    justify-content: center;
  }

  header .header-top .wrapper ul li .icon * {
    height: 30px;
  }

  header .header-top .wrapper ul li .text .name {
    font-size: 10px;
  }

  header .header-top .wrapper ul li .text .bold-text {
    font-size: 14px;
  }

  .img-zoom-result {
    width: 250px;
    height: 250px;
  }

  .breadcrumbs ul {
    padding: 10px 0;
    gap: 0;
  }

  .breadcrumbs ul li {
    height: 30px;
    line-height: 30px;
    margin-right: 0.5rem;
  }

  .filters-header .form-select {
    min-width: 140px;
  }

  .filters-header {
    gap: 0.75rem;
  }

  .filters-header .change-view-type {
    width: 100%;
    display: flex;
    gap: 0.75rem;
  }

  .filters-header .change-view-type > * {
    flex: 1;
  }

  .filters-header .filter-options {
    width: 100%;
  }

  .filters-header .filter-options > * {
    flex: 1 !important;
  }
}

@media (max-width: 601px) {
  header .main-header .header-wrapper .search-box {
    width: 100%;
  }

  header .header-actions .header-buttons .btn {
    padding: 0px 10px;
    height: 35px;
  }

  header .header-actions .header-buttons .btn svg {
    width: 20px;
    height: 20px;
  }

  header .header-actions .header-buttons .btn span:not(.btn-label) {
    font-size: 14px;
  }

  header .header-actions .header-buttons .btn .btn-label {
    font-size: 9px;
    padding: 1px 4px;
  }

  footer .footer-wrapper {
    gap: 2rem;
  }

  footer .footer-wrapper .footer-menubox {
    flex: 1 1 calc(50% - 1rem);
    min-width: 200px;
  }

  .img-zoom-result {
    position: fixed;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: 300px;
    aspect-ratio: unset;
  }

  .filters-header {
    flex-wrap: wrap;
  }

  header.sticky .main-header .header-wrapper .search-box {
    display: none;
  }

  header.sticky .main-header {
    padding: 5px 0;
  }

  header.sticky .main-header .brand-logo img {
    width: 160px;
  }

  .filters-header {
    gap: 0;
  }

  .filters-header .filter-options {
    flex-wrap: nowrap;
  }

  .filters-header .form-select {
    min-width: 180px;
  }

  header.compact .main-header .brand-logo img {
    height: 45px !important;
  }
}

@media (max-width: 768px) {
  header .header-top {
    position: relative;
  }

  header .header-top::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 3px);
    width: 80%;
    height: 1px;
    background-color: var(--gray);
    opacity: 0.5;
    z-index: 1;
  }

  header .header-top .wrapper ul {
    justify-content: center;
  }

  header .header-top .wrapper ul li .icon * {
    height: 30px;
  }

  header .header-top .wrapper ul li .text .name {
    font-size: 10px;
  }

  header .header-top .wrapper ul li .text .bold-text {
    font-size: 14px;
  }

  .img-zoom-result {
    width: 250px;
    height: 250px;
  }

  .breadcrumbs ul {
    padding: 10px 0;
    gap: 0;
  }

  .breadcrumbs ul li {
    height: 30px;
    line-height: 30px;
    margin-right: 0.5rem;
  }

  .filters-header .form-select {
    min-width: 140px;
  }

  .filters-header {
    gap: 0.75rem;
  }

  .filters-header .change-view-type {
    width: 100%;
    display: flex;
    gap: 0.75rem;
  }

  .filters-header .change-view-type > * {
    flex: 1;
  }

  .filters-header .filter-options {
    width: 100%;
  }

  .filters-header .filter-options > * {
    flex: 1 !important;
  }
}

@media (max-width: 601px) {
  header .main-header .header-wrapper .search-box {
    width: 100%;
  }

  header .header-actions .header-buttons .btn {
    padding: 0px 10px;
    height: 35px;
  }

  header .header-actions .header-buttons .btn svg {
    width: 20px;
    height: 20px;
  }

  header .header-actions .header-buttons .btn span:not(.btn-label) {
    font-size: 14px;
  }

  header .header-actions .header-buttons .btn .btn-label {
    font-size: 9px;
    padding: 1px 4px;
  }

  footer .footer-wrapper {
    gap: 2rem;
  }

  footer .footer-wrapper .footer-menubox {
    flex: 1 1 calc(50% - 1rem);
    min-width: 200px;
  }

  .img-zoom-result {
    position: fixed;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: 300px;
    aspect-ratio: unset;
  }

  .filters-header {
    flex-wrap: wrap;
  }

  header.sticky .main-header .header-wrapper .search-box {
    display: none;
  }

  header.sticky .main-header {
    padding: 5px 0;
  }

  header.sticky .main-header .brand-logo img {
    width: 160px;
  }

  .filters-header {
    gap: 0;
  }

  .filters-header .filter-options {
    flex-wrap: nowrap;
  }

  .filters-header .form-select {
    min-width: 180px;
  }

  header.compact .main-header .brand-logo img {
    height: 45px !important;
  }
}

@media (max-width: 576px) {
  .img-zoom-result {
    display: none !important;
  }

  .filters-header .filter-options {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .filters-header .filters-toggle,
  .filters-header .form-select {
    flex: 1 1 calc(50% - 0.25rem);
    min-width: 0;
  }
}

@media (max-width: 375px) {
  header .header-actions .header-buttons .btn {
    padding: 0px 8px;
    height: 30px;
  }

  header .header-actions .header-buttons .btn svg {
    width: 16px;
    height: 16px;
  }

  header .header-actions .header-buttons .btn span:not(.btn-label) {
    font-size: 12px;
  }

  header .header-actions .header-buttons .btn .btn-label {
    font-size: 11px;
    padding: 1px 3px;
    top: -3px;
    right: -3px;
  }

  .switch-button .switch {
    height: 28px;
    width: 20px;
  }

  .switch-button .slider:before {
    height: 14px;
    width: 14px;
    left: 3px;
    bottom: 2px;
  }

  .switch-button .slider {
    padding: 2px 0;
  }

  .switch-button .slider .on,
  .switch-button .slider .off {
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 0.2px;
  }

  .switch-button input:checked + .slider:before {
    transform: translateY(-10px);
  }

  .filters-header .filter-options {
    font-size: 14px;
  }

  .filters-header .filters-toggle svg {
    width: 16px !important;
    height: 16px !important;
  }
}

/* Responsive End */

/* Main Categories List */
.main-list {
  background: #fff;
  border-radius: 8px;
 border: 1px solid var(--gray);
}

.main-list .list-header {
  padding: 1rem 0.5rem;
  border-bottom: 1px solid var(--gray);
}

.main-list .list-header h5 {
  margin: 0;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.main-list .list-header h5 svg {
  width: 20px;
  height: 20px;
  fill: var(--primary-color);
}

.categories-list {
  margin: 0;
  padding: 0.25rem 0;
}

.categories-list li {
  position: relative;
}

.categories-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.5rem;
  color: var(--black);
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 15px;
}

.categories-list li a:hover {
  background: var(--gray);
  color: var(--primary-color);
}

.categories-list li a.active {
  background: var(--gray);
  color: var(--primary-color);
}

.categories-list li a .cat-info {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  flex: 1;
}

.category-mega-dropdown .categories-list li a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0.75rem 0.5rem;
    /* min-height: 48px; */
    font-weight: 500;
}

.category-mega-dropdown .categories-list li a .cat-info {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 1;
  width: 100%;
  text-align: left;
}

.category-mega-dropdown .categories-list li a .cat-meta {
  display: none;
}

.categories-list li a .cat-info img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: brightness(0);
}

.categories-list li a .count {
  font-size: 13px;
  color: #666;
  font-weight: 400;
}

.categories-list li a .arrow {
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.categories-list li a:hover .arrow {
  opacity: 1;
  transform: translateX(0);
}

.categories-list li a.active .arrow {
  opacity: 1;
  transform: translateX(0);
}

.categories-list li a .arrow svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Main Home Slider */
.main-slide {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.mainHomeSwiper {
  width: 100%;
  height: 300px;
  border-radius: 8px;
}

@media (min-width: 992px) {
  .mainHomeSwiper {
    height: 500px;
  }
}

.mainHomeSwiper .swiper-slide {
  width: 100%;
  height: 100%;
}

.mainHomeSwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.mainHomeSwiper .swiper-button-next,
.mainHomeSwiper .swiper-button-prev {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.mainHomeSwiper .swiper-button-next:after,
.mainHomeSwiper .swiper-button-prev:after {
  font-size: 16px;
  color: var(--black);
}

.mainHomeSwiper .swiper-button-next:hover,
.mainHomeSwiper .swiper-button-prev:hover {
  background: var(--primary-color);
}

.mainHomeSwiper .swiper-button-next:hover:after,
.mainHomeSwiper .swiper-button-prev:hover:after {
  color: #fff;
}

/* Login Page Styles */
.login-page {
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('../images/login-bg.jpg') no-repeat center center fixed;
  background-size: cover;
  padding: 2rem;
  color: #fff;
}

.login-page .brand-logo {
  filter: brightness(0) invert(1);
}

.login-wrapper {
  width: 100%;
  max-width: 400px;
}

.login-box {
  background: rgb(27 27 27 / 50%);
  padding: 3rem 2rem;
  border-radius: 8px;
  box-shadow: 0 0 30px rgb(255 255 255 / 21%);
  border: 1px solid #ffffff5c;
}

.remember-me input[type='checkbox'] {
  min-width: 18px;
  height: 18px;
  accent-color: var(--primary-color);
  appearance: none;
  -webkit-appearance: none;
  background-color: #fff;
  border: 1px solid var(--primary-color);
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  margin: 0;
}

.remember-me input[type='checkbox']:checked {
  background-color: var(--primary-color);
}

.remember-me input[type='checkbox']:checked::before {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.become-dealer {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.become-dealer:hover {
  color: #fff;
  text-decoration: underline;
}

.login-form .form-control {
  height: 45px;
  background: rgb(255 255 255 / 85%);
  border: 1px solid var(--gray);
  font-weight: 500;
}

.login-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: none;
}

.login-page .divider {
  display: block;
  margin: 1rem 0;
  background-color: #fff;
  opacity: 0.5;
  width: 100%;
  height: 1px;
}

.remember-me {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  margin: 0;
}

.remember-me input {
  width: 18px;
  height: 18px;
  accent-color: var(--primary-color);
}

.remember-me span {
  font-weight: 500;
  user-select: none;
}

.forgot-password {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.forgot-password:hover {
  text-decoration: underline;
}

.login-form .btn-primary {
  height: 45px;
  background: var(--primary-color);
  border: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid #fff;
}

.login-form .lh-set {
  line-height: 35px;
}

.login-form .btn-primary:hover {
  background: #e07722;
}

.exa-bayikanali {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  z-index: 9;
  width: 250px;
  max-width: 100%;
}

.bg-bk-gray {
  background-color: var(--gray);
}

@media (max-width: 576px) {
  .login-page {
    padding: 1rem;
  }

  .login-box {
    padding: 1.5rem;
  }

  .exa-bayikanali {
    left: 50%;
    transform: translateX(-50%);
    bottom: 5rem;
  }
}

/* E-Bülten Styles */
.e-bulten {
  padding: 0;
  background: linear-gradient(45deg, var(--primary-color) 0%, #e07722 100%);
  position: relative;
  overflow: hidden;
}

.e-bulten::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /*background: url('../images/pattern.png') repeat;*/
  opacity: 0.1;
}

.e-bulten-wrapper {
  background: transparent;
  padding: 5rem 0;
  position: relative;
  z-index: 1;
}

.newsletter-content {
  color: #fff;
}

.newsletter-content h3 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #fff;
}

.newsletter-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}

.newsletter-form .input-group {
  position: relative;
  max-width: 500px;
}

.newsletter-form .form-control {
  height: 60px;
  border-radius: 30px !important;
  padding: 0 30px;
  border: none;
  font-size: 16px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.newsletter-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.newsletter-form .form-control:focus {
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.newsletter-form .primary-button {
  position: absolute;
  right: 6px;
  top: 6px;
  height: 48px;
  border-radius: 24px;
  padding: 0 30px;
  background: #fff;
  border: none;
  color: var(--primary-color);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 99;
  transition: all 0.3s ease;
  transform: translateX(0);
}

.newsletter-form .primary-button:hover {
  background: var(--black);
  color: #fff;
}

.newsletter-form .primary-button svg {
  transition: transform 0.3s ease;
  stroke: currentColor;
}

.newsletter-form .primary-button:hover svg {
  transform: translateX(3px);
}

@media (max-width: 768px) {
  .e-bulten-wrapper {
    padding: 3rem 0;
  }

  .newsletter-content {
    text-align: center;
  }

  .newsletter-form .input-group {
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .newsletter-content h3 {
    font-size: 24px;
  }

  .newsletter-content p {
    font-size: 16px;
  }

  .newsletter-form .form-control {
    height: 50px;
    font-size: 14px;
  }

  .newsletter-form .primary-button {
    padding: 0 20px;
    height: 40px;
    top: 5px;
  }

  .newsletter-form .primary-button span {
    display: none;
  }
}

/* Cart Styles */
.cart-actions h4 {
  color: var(--black);
  font-weight: 600;
  font-size: 24px;
}

.currency-selector {
  background: #fff;
}

.currency-selector .currency-label {
  color: var(--black);
  font-weight: 500;
  font-size: 15px;
}

.currency-selector .btn-group {
  border-radius: 4px;
  overflow: hidden;
}

.currency-selector .btn-check + .btn {
  background: #fff;
  border: 1px solid var(--gray);
  color: var(--black);
  font-weight: 500;
  min-width: 60px;
  height: 40px;
  line-height: 30px;
  transition: all 0.3s ease;
}

.currency-selector .btn-check:checked + .btn {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

.currency-selector .btn-check + .btn:hover {
  background: var(--gray);
  border-color: var (--gray);
}

.cart-exchange {
  border-bottom: 1px solid #ddd;
  padding-bottom: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .cart {
    padding: 1rem;
  }

  .cart-exchange {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .cart-actions h4 {
    font-size: 20px;
  }

  .currency-selector {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .currency-selector {
    flex-direction: column;
    gap: 0.5rem;
  }

  .currency-selector .btn-group {
    width: 100%;
  }

  .currency-selector .btn-check + .btn {
    flex: 1;
  }
}

/* Cart Summary Table */
.cart-table {
  width: 100%;
  background: #fff;
  overflow: hidden;
  margin-top: 1.5rem;
}

.cart-table.theme-2 {
  border-collapse: collapse;
  border-radius: 8px;
}

.cart-table.theme-2 thead tr {
  background: var(--black);
}

.cart-table thead th {
  color: black;
  font-weight: 500;
  padding: 15px 7.5px 15px 7.5px;
  text-align: left;
  font-size: 14px;
  white-space: nowrap;
}

.cart-table.theme-2 thead th {
  color: #fff;
}

.cart-table tbody td {
  padding: 7.5px 7.5px 7.5px 7.5px;
  vertical-align: middle;
}

.cart-table tbody tr {
  border-bottom: 1px solid var(--gray);
}

.cart-table tbody tr:nth-child(even) {
  background: #f9f9f9;
}

.cart-table .product-thumbnail {
  width: 100px;
}

.cart-table .product-thumbnail img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid var(--gray);
}

.cart-table .product-name {
  min-width: 300px;
}

.cart-table .product-name a {
  color: var(--black);
  font-weight: 500;
  display: block;
  margin-bottom: 5px;
  transition: color 0.3s ease;
}

.cart-table .product-name a:hover {
  color: var(--primary-color);
}

.cart-table .product-code {
  font-size: 13px;
  color: #666;
  display: block;
}

.cart-table .product-vat,
.cart-table .product-price,
.cart-table .product-subtotal {
  font-weight: 500;
  white-space: nowrap;
}

.cart-table .product-qty {
  text-align: center;
}

.cart-table .product-actions {
  width: auto;
  min-width: 100px;
  text-align: right;
  display: flex;
  gap: 0.5rem;
}

.cart-table .action-button {
  width: 32px;
  height: 32px;
  border: 1px solid var(--gray);
  background: #fff;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative !important;
  padding: 0px;
}

.cart-table .action-button svg {
  width: 16px;
  height: 16px;
  fill: var(--black);
  transition: fill 0.3s ease;
}

.cart-table .action-button:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.cart-table .action-button:hover svg {
  fill: #fff;
}

.cart-table .delete-item:hover {
  background: #dc3545;
  border-color: #dc3545;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .cart-table {
    display: block;
    overflow-x: auto;
  }

  .cart-table .product-name {
    min-width: 200px;
  }
}

@media (max-width: 768px) {
  .cart-table thead th,
  .cart-table tbody td {
    padding: 10px;
  }

  .cart-table .product-thumbnail {
    width: 80px;
  }

  .cart-table .product-thumbnail img {
    width: 60px;
    height: 60px;
  }

  .cart-table .product-name {
    min-width: 180px;
  }

  .cart-table .product-name a {
    font-size: 14px;
  }
}

/* Cart Summary Styles */
.cart-sumary {
  margin-top: 2rem;
  padding: 2rem;
  background: #fff;
  border-radius: 8px;
  border: 1px solid var(--gray);
}

.cart-sumary .price-summary h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.cart-sumary .summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 15px;
}

.cart-sumary .summary-item.total {
  font-weight: 600;
  font-size: 18px;
}

.cart-sumary .summary-item .price {
  color: var(--primary-color);
}

.cart-sumary .cart-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cart-sumary .cart-buttons .tertiary-button,
.cart-sumary .cart-buttons .secondary-button,
.cart-sumary .cart-buttons .primary-button {
  width: 100%;
  min-width: 150px;
  height: 45px;
  justify-content: center;
}

.cart-sumary .cart-buttons .primary-button {
  background-color: #28a745;
  /* Yeşil renk */
  border-color: #28a745;
}

.cart-sumary .cart-buttons .primary-button:hover {
  background-color: #218838;
  /* Hover durumu için koyu yeşil */
  border-color: #218838;
}

@media (max-width: 768px) {
  .cart-sumary .cart-buttons {
    flex-direction: column;
  }

  .cart-sumary .cart-buttons .tertiary-button,
  .cart-sumary .cart-buttons .secondary-button,
  .cart-sumary .cart-buttons .primary-button {
    width: 100%;
  }
}

/* Delivery Options Styles */
.delivery-options {
  background: #fff;
  border-radius: 8px;
  padding: 1.5rem;
  border: 1px solid var (--gray);
}

.delivery-options .form-label {
  color: var (--black);
  font-size: 15px;
}

.delivery-options .form-select,
.delivery-options .form-control {
  border: 1px solid var(--gray);
  border-radius: 4px;
  padding: 0.5rem 1rem;
  font-size: 14px;
  transition: all 0.3s ease;
}

.delivery-options .form-select {
  height: 45px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
}

.delivery-options .form-control:focus,
.delivery-options .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: none;
}

.delivery-options textarea.form-control {
  resize: none;
  min-height: 120px;
}

/* Responsive styles */
@media (max-width: 768px) {
  .delivery-options {
    padding: 1rem;
  }
}

/* Payment Steps Styles */
.payment-steps {
  margin: 1.5rem 0;
}

@media (min-width: 1024px) {
  .payment-steps {
    width: 60%;
    margin: 1.5rem auto;
  }
}

.payment-steps ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  padding: 0;
  position: relative;
}

.payment-steps ul:before {
  content: '';
  position: absolute;
  top: 15px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gray);
  z-index: 1;
}

.payment-steps .step {
  position: relative;
  z-index: 2;
  background: #fff;
  padding: 0 0.5rem;
}

.payment-steps .step-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.payment-steps .step-number {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 2px solid var(--gray);
  border-radius: 50%;
  font-weight: 600;
  font-size: 13px;
  color: var(--black);
  transition: all 0.3s ease;
}

.payment-steps .step-label {
  font-size: 13px;
  color: var(--black);
  font-weight: 500;
}

.payment-steps .step.current .step-number {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

.payment-steps .step.completed .step-number {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

.payment-steps .step.completed .step-label {
  color: var(--primary-color);
}

@media (max-width: 768px) {
  .payment-steps .step-label {
    font-size: 12px;
  }

  .payment-steps .step-number {
    width: 26px;
    height: 26px;
    font-size: 12px;
  }
}

@media (max-width: 576px) {
  .payment-steps .step {
    padding: 0 0.25rem;
  }

  .payment-steps .step-label {
    font-size: 11px;
  }

  .payment-steps .step-content {
    gap: 0.25rem;
  }

  .payment-steps .step-number {
    width: 24px;
    height: 24px;
    font-size: 11px;
  }
}

/* Address Add Button Style */
.different-address-section .address-add-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 45px;
  padding: 0 16px;
  background-color: #fff;
  border: 1px solid var(--gray);
  border-radius: 4px;
  color: var(--black);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.address-add-button:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  background-color: var(--gray);
}

.address-add-button svg {
  width: 16px;
  height: 16px;
  transition: all 0.3s ease;
}

.address-add-button:hover svg {
  fill: var(--primary-color);
}

/* Modal Styles */
.modal-content {
  border: none;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  width: 576px;
  max-width: 100%;
  margin: auto;
  background: #fff !important;
  overflow-y: auto;
}

.modal-header {
  border-bottom: 1px solid var(--gray);
  padding: 1rem 1.5rem;
  justify-content: space-between;
}

.modal-header .modal-title {
  font-weight: 600;
  font-size: 18px;
}

.modal-header .btn-close {
  background: none;
  border: none;
  padding: 0;
  opacity: 1;
  position: relative;
  width: 24px;
  height: 24px;
}

.modal-header .btn-close::before,
.modal-header .btn-close::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 16px;
  background: var(--black);
  top: 50%;
  left: 50%;
}

.modal-header .btn-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal-header .btn-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.modal-body {
  padding: 1.5rem;
}

.modal-footer {
  border-top: 1px solid var(--gray);
  padding: 1rem 1.5rem;
  gap: 0.5rem;
}

/* Form Styles */
.form-label {
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 0.5rem;
}

.form-label small {
  font-weight: normal;
}

.form-control:disabled,
.form-select:disabled {
  background-color: #ddd;
  opacity: 0.75;
}

.invalid-feedback {
  font-size: 12px;
  margin-top: 0.25rem;
}

/* Custom Modal Styles */
.custom-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1050;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.custom-modal.show {
  display: flex;
  opacity: 1;
  align-items: center;
  justify-content: center;
}

.custom-modal-dialog {
  background: #fff;
  border-radius: 8px;
  width: 100%;
  max-width: 500px;
  transform: translateY(-20px);
  transition: transform 0.3s ease-in-out;
  margin: 1.75rem;
}

.custom-modal.show .custom-modal-dialog {
  transform: translateY(0);
}

.custom-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid #dee2e6;
}

.custom-modal-title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 500;
}

.custom-modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  padding: 0;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
  transition: opacity 0.2s;
}

.custom-modal-close:hover {
  opacity: 1;
}

.custom-modal-body {
  padding: 1rem;
}

.custom-modal-footer {
  padding: 1rem;
  border-top: 1px solid #dee2e6;
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
}

.custom-modal .form-group {
  margin-bottom: 1rem;
}

.custom-modal .form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.custom-modal .form-control {
  width: 100%;
  padding: 0.375rem 0.75rem;
  border: 1px solid #ced4da;
  border-radius: 4px;
}

.custom-modal .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(var(--primary-rgb), 0.25);
}

body.modal-open {
  overflow: hidden;
}

/* Order Summary Styles */
.order-summary {
  background: #fff;
  border-radius: 8px;
  padding: 1.25rem;
}

.summary-list {
  display: flex;
  flex-direction: column;
}

.summary-item {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray);
}

.summary-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.summary-item .item-label {
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.5rem;
  font-size: 15px;
}

.summary-item .item-content {
  color: #666;
  font-size: 14px;
}

.summary-item .item-content p {
  line-height: 1.4;
  margin-right: 1rem;
  flex: 1;
}

.summary-item .tertiary-button {
  min-width: 90px;
  height: 32px;
  font-size: 13px;
  padding: 0 12px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .order-summary {
    padding: 1rem;
  }

  .summary-list {
    gap: 0.75rem;
  }

  .summary-item {
    padding-bottom: 0.75rem;
  }
}

/* Order Status Styles */
.order-status {
  background: #fff;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  margin-top: 20px;
  border: 1px solid #ddd;
}

.order-status .success-icon {
  animation: scaleUp 0.5s ease;
}

@keyframes scaleUp {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

.order-status .error-icon {
  animation: scaleUp 0.5s ease;
}

.order-status .primary-button.danger {
  background-color: #dc3545;
  border-color: #dc3545;
}

.order-status .primary-button.danger:hover {
  background-color: #bb2d3b;
  border-color: #bb2d3b;
}

.order-status .primary-button.success {
  background-color: #28a745;
  border-color: #28a745;
}

.order-status .primary-button.success:hover {
  background-color: #28a745;
  border-color: #28a745;
}

/* DataTable Styles */
.data-table {
  background: #fff;
  border-radius: 8px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  border: 1px solid var(--gray);
  overflow: hidden;
  overflow-x: auto;
}

.data-table table {
  width: 100% !important;
}

.data-table .form-check-input {
  cursor: pointer;
}

.data-table .dt-length .dt-input {
  margin-right: 10px;
}

.data-table .dt-paging > nav button.dt-paging-button {
  min-width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  background: #fff !important;
  border: 1px solid var(--gray);
  color: var(--black);
  font-weight: 500;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.data-table .dt-paging > nav button.dt-paging-button.current {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

.data-table thead th {
  background: var(--black);
  color: #fff;
  padding: 12px;
  font-weight: 500;
  white-space: nowrap;
}

.data-table tbody td {
  vertical-align: middle;
  padding: 12px;
  font-size: 14px;
}

.data-table tbody tr:hover {
  background-color: var(--gray);
}

.product-cell {
  min-width: 300px;
  max-width: 500px;
}

.product-cell a {
  display: flex;
  align-items: center;
  gap: 12px;
}

.product-cell img {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid var(--gray);
}

.product-cell span {
  flex: 1;
  font-weight: 500;
  display: block;
  white-space: normal;
  line-height: 1.4;
  overflow: visible;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
  .product-cell {
    min-width: 200px;
    max-width: 100%;
  }
}

.eksa-point {
  font-weight: 600;
  color: var(--primary-color);
}

.special-price,
.end-user-price {
  font-weight: 600;
  white-space: nowrap;
}

.status-badge {
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
}

.status-badge.aktif {
  background-color: #e8f5e9;
  color: #2e7d32;
}

.status-badge.pasif {
  background-color: #fbe9e7;
  color: #c62828;
}

.status-badge.yolda {
  background-color: #ffbb00;
  color: #ffffff;
}

.order-amount {
  width: 70px !important;
  height: 32px;
  text-align: center;
  padding: 0 8px;
}

.add-to-cart-btn {
  width: 32px;
  height: 32px;
  border: none;
  background: var(--primary-color);
  color: #fff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.add-to-cart-btn:hover {
  background: #e07722;
}

.add-to-cart-btn svg {
  width: 16px;
  height: 16px;
}

.account-adresses .address-item {
  position: relative;
}

.account-adresses .adress-check input[type='radio'] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid var(--gray);
  border-radius: 50%;
  outline: none;
  cursor: pointer;
  position: relative;
  margin: 0;
}

.account-adresses .address-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.account-adresses .adress-check input[type='radio']:checked {
  border-color: var(--primary-color);
  background: transparent;
}

.account-adresses .adress-check input[type='radio']:checked::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--primary-color);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* DataTables özel stiller */
.dataTables_wrapper .dataTables_length select {
  height: 32px;
  padding: 0 8px;
  border-radius: 4px;
  border-color: var(--gray);
}

.dataTables_wrapper .dataTables_filter input {
  height: 32px;
  padding: 0 12px;
  border-radius: 4px;
  border: 1px solid var(--gray);
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
  padding: 6px 12px;
  border-radius: 4px;
  border: 1px solid var(--gray);
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff !important;
}

.table-header,
.table-footer {
  padding: 1rem 0;
}

/* DataTable Custom Styles */
#productTable {
  width: 100% !important;
  margin: 0 !important;
  border-collapse: collapse;
}

#productTable thead th {
  background-color: var(--black) !important;
  border-bottom: 1px solid #eee !important;
  color: #fff !important;
  font-size: 13px;
  font-weight: 500;
  padding: 12px 8px;
  white-space: nowrap;
}

#productTable tbody td {
  padding: 12px 8px;
  border-bottom: 1px solid #eee !important;
  vertical-align: middle;
  font-size: 14px;
}

#productTable tbody td.dt-type-numeric {
  text-align: center !important;
}

table.dataTable th.dt-type-numeric {
  text-align: left !important;
}

#productTable .form-check-input {
  width: 18px;
  height: 18px;
  cursor: pointer;
  border-color: #ddd;
}

#productTable .form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

/* Responsive DataTable */
@media screen and (max-width: 1200px) {
  #productTable {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  #productTable thead th,
  #productTable tbody td {
    padding: 8px;
  }
}

@media screen and (max-width: 768px) {
  #productTable thead th {
    font-size: 12px;
  }

  #productTable tbody td {
    font-size: 13px;
  }

  #productTable .product-cell {
    max-width: 200px;
    white-space: normal;
  }

  #productTable .product-cell span {
    display: block;
    white-space: normal;
  }

  .dt-search {
    text-align: center;
  }
}

/* Table icons size adjustment */
#productTable svg {
  width: 16px;
  height: 16px;
}

/* Status badges in table */
#productTable .status-badge {
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  text-wrap-mode: nowrap;
}

/* Table input styles */
#productTable .form-control {
  height: 32px;
  padding: 4px 8px;
  font-size: 13px;
}

/* Product cell optimization */
#productTable .product-cell {
  display: flex;
  align-items: center;
  gap: 10px;
}

#productTable .product-cell img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 4px;
}

#productTable .product-cell span {
  flex: 1;
  min-width: 0;
}

/* DataTable sorting icons */
table.dataTable thead .sorting:before,
table.dataTable thead .sorting:after,
table.dataTable thead .sorting_asc:before,
table.dataTable thead .sorting_asc:after,
table.dataTable thead .sorting_desc:before,
table.dataTable thead .sorting_desc:after {
  font-size: 12px;
  opacity: 0.5;
}

table.dataTable .hide-dt-column-order .dt-column-order {
  display: none;
}

.table-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding: 1rem;
  background: #fff;
  border: 1px solid var(--gray);
  border-radius: 8px;
}

.table-header .dataTables_filter {
  margin: 0;
}

.table-header .dataTables_filter input {
  height: 40px;
  min-width: 250px;
  border: 1px solid var(--gray);
  border-radius: 4px;
  padding: 0 1rem;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.table-header .dataTables_filter input:focus {
  border-color: var(--primary-color);
  outline: none;
}

.table-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  padding: 1rem;
  background: #fff;
  border: 1px solid var(--gray);
  border-radius: 8px;
}

.table-footer .dataTables_length select {
  height: 40px;
  padding: 0 2rem 0 1rem;
  border: 1px solid var(--gray);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  background-position: right 8px center;
}

.table-footer .dataTables_paginate {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.table-footer .dataTables_paginate .paginate_button {
  min-width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid var(--gray);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.table-footer .dataTables_paginate .paginate_button:hover {
  background: var(--gray);
  color: var(--primary-color);
}

.table-footer .dataTables_paginate .paginate_button.current {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

.table-footer .dataTables_info {
  font-size: 14px;
  font-weight: 500;
  color: #666;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
  .table-header,
  .table-footer {
    flex-direction: column;
    gap: 1rem;
  }

  .table-footer .dataTables_paginate {
    width: 100%;
    justify-content: center;
  }

  .table-header .dataTables_filter input {
    min-width: 200px;
  }
}

/* Form element focus stilleri */
.form-control:focus,
.form-select:focus,
.dataTables_length select:focus,
.dataTables_filter input:focus {
  border-color: var(--primary-color) !important;
  box-shadow: none !important;
  outline: none !important;
}

/* DataTable pagination stilleri */
.dataTables_wrapper .dataTables_paginate {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 2rem 0;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
  min-width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  background: #fff !important;
  border: 1px solid var(--gray) !important;
  color: var(--black) !important;
  font-weight: 500;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
  background: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: #fff !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover:not(.current) {
  background: var(--gray) !important;
  color: var(--primary-color) !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.previous,
.dataTables_wrapper .dataTables_paginate .paginate_button.next {
  font-size: 0;
  position: relative;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.previous::before,
.dataTables_wrapper .dataTables_paginate .paginate_button.next::before {
  content: '';
  width: 8px;
  height: 8px;
  border: 2px solid currentColor;
  border-width: 2px 2px 0 0;
  position: absolute;
  top: 50%;
  left: 50%;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.previous::before {
  transform: translate(-25%, -50%) rotate(-135deg);
}

.dataTables_wrapper .dataTables_paginate .paginate_button.next::before {
  transform: translate(-75%, -50%) rotate(45deg);
}

.dataTables_wrapper .dataTables_paginate .paginate_button.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* DataTable select ve search input stilleri */
.dataTables_wrapper .dataTables_length select,
.dataTables_wrapper .dataTables_filter input {
  height: 40px;
  padding: 0 12px;
  border: 1px solid var(--gray);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  background-color: #fff;
  transition: all 0.3s ease;
}

.dataTables_wrapper .dataTables_filter input {
  min-width: 200px;
  padding-right: 35px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23999' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

.dt-search input {
  font-size: 14px;
  font-weight: 600;
  color: #b1abab;
  width: 300px;
  max-width: 50%;
}

.dt-search input::placeholder {
  font-size: 14px;
  font-weight: 600;
  color: #b1abab;
}

.dt-search input:focus {
  border-color: var(--primary-color) !important;
  box-shadow: none !important;
  outline: none !important;
}

/* Account Menu Styles */
.account-menu .accordion {
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--gray);
}

.account-menu .accordion-item {
  border: none;
  border-bottom: 1px solid var (--gray);
}

.account-menu .accordion-item:last-child {
  border-bottom: none;
}

.account-menu .accordion-button {
  padding: 1rem;
  font-weight: 500;
  background: #fff;
  box-shadow: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.account-menu .accordion-button:not(.collapsed) {
  border-bottom: 1px solid var(--gray);
  color: var (--primary-color);
}

.account-menu .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.account-menu .accordion-button::after {
  display: none;
}

.account-menu .menu-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.account-menu .menu-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  transition: all 0.3s ease;
}

.account-menu .accordion-button .arrow-icon {
  width: 16px;
  height: 16px;
  margin-left: auto;
  transition: transform 0.3s ease;
}

.account-menu .accordion-button:not(.collapsed) .arrow-icon {
  transform: rotate(180deg);
}

.account-menu .sub-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 0 !important;
  overflow: hidden;
}

.account-menu .sub-menu li a {
  display: flex;
  align-items: center;
  padding: 10px 1rem 10px 2.75rem;
  color: var(--black);
  font-size: 14px;
  transition: all 0.3s ease;
}

.account-menu .sub-menu li a:hover {
  background: var (--gray);
  color: var (--primary-color);
}

.account-menu .sub-menu li.active a {
  color: var(--primary-color);
  font-weight: 500;
}

/* Accordion temel stilleri */
.accordion-collapse {
  display: none;
}

.accordion-collapse.show {
  display: block;
}

.accordion-button {
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.accordion-button.collapsed .arrow-icon {
  transform: rotate(0deg);
}

.accordion-button:not(.collapsed) .arrow-icon {
  transform: rotate(180deg);
}

/* Accordion Styles */
.accordion-collapse {
  transition: height 0.3s ease-in-out;
  overflow: hidden;
}

.accordion-button {
  transition: all 0.3s ease;
}

.accordion-button .arrow-icon {
  transition: transform 0.3s ease;
}

.accordion-button.collapsed .arrow-icon {
  transform: rotate(0deg);
}

.accordion-button:not(.collapsed) .arrow-icon {
  transform: rotate(180deg);
}

/* Account Menu Styles */
.account-menu .menu-wrapper {
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--gray);
}

.account-menu .menu-item {
  border-bottom: 1px solid var(--gray);
}

.account-menu .menu-item:last-child {
  border-bottom: none;
}

.account-menu .menu-button {
  width: 100%;
  text-align: left;
  padding: 1rem;
  font-weight: 500;
  background: #fff;
  border: none;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.account-menu .menu-button.active {
  color: var(--primary-color);
}

.account-menu .menu-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.account-menu .menu-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.account-menu .arrow-icon {
  width: 16px;
  height: 16px;
  margin-left: auto;
  transition: all 0.2s ease;
  margin-top: -10px;
}

.account-menu .menu-button.active .arrow-icon {
  transform: rotate(-90deg);
  margin-top: 0;
  transition: all 0.2s ease;
}

.account-menu .sub-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 0 !important;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.account-menu .sub-menu.open {
  max-height: 500px !important;
}

.account-menu .sub-menu li a {
  display: flex;
  align-items: center;
  padding: 10px 1rem 10px 2.75rem;
  color: var(--black);
  font-size: 16px;
  transition: all 0.3s ease;
  font-weight: 600;
}

.account-menu .sub-menu li a:hover {
  background: var(--gray);
  color: var(--primary-color);
}

.account-menu .sub-menu li.active a {
  color: var(--primary-color);
  font-weight: 500;
}

.content-header {
  border-bottom: 1px solid #ddd;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.content-header h4 {
  color: var(--black);
  font-weight: 600;
  font-size: 24px;
}

/* Profile Styles */
.profile-content {
  background: #fff;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.profile-section {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #eee;
}

.profile-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.profile-section h5 {
  color: #282828;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}

.profile-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.info-item {
  display: flex;
  flex-direction: column;
}

.info-label {
  font-size: 13px;
  color: #666;
  margin-bottom: 5px;
}

.info-value {
  font-size: 15px;
  color: #282828;
  font-weight: 500;
}

.profile-actions {
  text-align: right;
  margin-top: 30px;
}

.update-profile-btn {
  background: #007bff;
  color: #fff;
  border: none;
  padding: 10px 25px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease;
}

.update-profile-btn:hover {
  background: #0056b3;
}

@media (max-width: 768px) {
  .profile-info {
    grid-template-columns: 1fr;
  }
}

/* Account Tabs Styles */
.account-tabs {
  border-bottom: 1px solid var(--gray);
  gap: 1rem;
  padding: 0 1rem;
}

.account-tabs .nav-item {
  margin: 0;
}

.account-tabs .nav-link {
  border: none;
  padding: 1rem;
  color: var(--black);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
}

.account-tabs .nav-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.account-tabs .nav-link::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.account-tabs .nav-link:hover {
  color: var(--primary-color);
  border: none;
}

.account-tabs .nav-link.active {
  color: var(--primary-color);
  border: none;
  background: none;
}

.account-tabs .nav-link.active::after {
  transform: scaleX(1);
}

.account-tab-content {
  background: #fff;
  border: 1px solid var(--gray);
  border-top: none;
  border-radius: 0 0 8px 8px;
}

@media (max-width: 576px) {
  .account-tabs {
    gap: 0.5rem;
    padding: 0 0.5rem;
  }

  .account-tabs .nav-link {
    padding: 0.75rem;
    font-size: 14px;
  }

  .account-tabs .nav-link svg {
    width: 16px;
    height: 16px;
  }
}

/* Account Tab Content Styles */
.table-content {
  padding: 1rem;
}

.table-header {
  margin-bottom: 1rem;
}

.dt-search input {
  min-width: 250px;
  height: 40px;
}

.table > :not(caption) > * > * {
  padding: 0.5rem 1rem;
}

.table thead th {
  background: var(--gray);
  font-weight: 600;
  border: none;
}

.status-badge {
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
}

.status-badge.active {
  background: #2e7d32;
  color: #fff;
  font-weight: bold;
}

.status-badge.inactive {
  background: #c62828;
  color: #fff;
  font-weight: bold;
}
.status-badge.pasif {
  background: #c62828;
  color: #fff;
  font-weight: bold;
}

.action-button {
  width: 32px;
  height: 32px;
  border: none;
  background: var(--gray);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.table-content .action-button,
.account-content .action-button {
  padding: 0 !important;
}

.action-button svg {
  width: 16px;
  height: 16px;
}

.action-button.edit:hover {
  background: #e3f2fd;
  color: #1976d2;
}

.action-button.delete:hover {
  background: #ffebee;
  color: #c62828;
}

/* Form Content Styles */
.form-content {
  max-width: 800px;
  margin: 0 auto;
}

.form-label {
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-control,
.form-select {
  height: 40px;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-color);
  box-shadow: none;
}

/* Responsive styles */
@media (max-width: 768px) {
  .dt-search input {
    min-width: 200px;
  }

  .table-responsive {
    margin: 0 -1rem;
  }
}

/* Permissions List Styles */
.permissions-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  background: var(--gray);
  border-radius: 4px;
}

.permission-item {
  margin: 0;
}

.permission-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  margin: 0;
}

.permission-checkbox input[type='checkbox'] {
  display: none;
}

.permission-checkbox .checkbox {
  width: 18px;
  height: 18px;
  border: 2px solid #ddd;
  border-radius: 4px;
  position: relative;
  transition: all 0.3s ease;
}

.permission-checkbox input:checked + .checkbox {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.permission-checkbox input:checked + .checkbox:after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.permission-checkbox .label {
  font-size: 14px;
  font-weight: 500;
  user-select: none;
}

.permission-checkbox:hover .checkbox {
  border-color: var(--primary-color);
}

/* Responsive styles */
@media (max-width: 768px) {
  .permissions-list {
    padding: 0.75rem;
  }

  .permission-checkbox .label {
    font-size: 13px;
  }
}

/* Orders Filter Styles */
.orders-filter {
  background: #fff;
  border-radius: 8px;
  padding: 1.5rem;
  border: 1px solid var(--gray);
  margin-bottom: 1.5rem;
}

.orders-filter .filter-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.orders-filter .filter-form .full-width-grid {
  grid-column: 1 / -1;
}

.orders-filter .form-group {
  margin-bottom: 1rem;
}

.orders-filter .form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 14px;
  color: var(--black);
}

.orders-filter .form-group .form-checkboxes {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.orders-filter .form-group .form-checkboxes label {
  font-size: 16px;
  font-weight: 500;
}

.orders-filter .form-control {
  height: 40px;
  font-size: 14px;
}

.orders-filter .filter-buttons {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  padding-top: 0.5rem;
}

@media (max-width: 768px) {
  .orders-filter .filter-form {
    grid-template-columns: 1fr;
  }
}

/* Order List Table Styles */
.order-list .table {
  margin-bottom: 0;
}

.order-list .table thead th {
  background: var(--gray);
  padding: 12px 12px;
  font-weight: 600;
  border: none;
  white-space: nowrap;
}

.order-list .table td.narrow {
  max-width: 110px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
}

.order-list .table tbody td {
  padding: 12px 15px;
  vertical-align: middle;
  border-color: var(--gray);
}

.order-list .table tbody td a {
  color: var(--primary-color);
}

.order-list .table tbody tr:hover {
  background-color: #f8f9fb;
}

.order-list .badge {
  padding: 6px 12px;
  font-weight: 500;
  font-size: 12px;
}

.order-list .badge.bg-success {
  background-color: #28a745 !important;
}

.order-list .badge.bg-warning {
  background-color: #ffc107 !important;
  color: #000;
}

.order-list .badge.bg-info {
  background-color: #17a2b8 !important;
}

/* Empty Cart Styles */
.empty-cart {
  padding: 4rem 1rem;
  background: #fff;
  border-radius: 8px;
  border: 1px solid var(--gray);
  margin-top: 1.5rem;
}

.empty-cart .empty-cart-icon {
  margin-bottom: 1.5rem;
}

.empty-cart .empty-cart-icon svg {
  fill: var(--gray);
  transition: all 0.3s ease;
}

.empty-cart:hover .empty-cart-icon svg {
  fill: var(--primary-color);
  transform: scale(1.1);
}

.empty-cart h4 {
  color: var(--black);
  font-weight: 600;
  margin-bottom: 1rem;
}

.empty-cart .continue-shopping {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.empty-cart .continue-shopping::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.empty-cart .continue-shopping:hover::after {
  width: 100%;
}

/* Wizard Content Styles */
.wizard-content {
  background: #fff;
  border-radius: 8px;
  padding: 1.5rem 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.wizard-table {
  width: 100%;
  min-width: 800px;
}

/* Mobile için container düzenlemesi */
@media (max-width: 991px) {
  .wizard-content {
    margin: 0 -15px;
    border-radius: 0;
    padding: 1rem 0;
  }

  /* Tablo hücreleri için padding ayarı */
  .wizard-content .table td,
  .wizard-content .table th {
    padding: 8px;
    font-size: 14px;
  }

  /* Quantity input için özel stil */
  .wizard-content .table tr td .quantity-input {
    width: 80px;
    min-width: 80px;
  }

  /* Form elementleri için düzenleme */
  .wizard-content .table .form-select {
    min-width: 120px;
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .wizard-content {
    margin: 0 -10px;
  }

  .wizard-content .table td,
  .wizard-content .table th {
    padding: 6px;
    font-size: 13px;
  }

  .wizard-content .table tr td .quantity-input {
    width: 60px;
    min-width: 60px;
  }

  .wizard-content .table .form-select {
    min-width: 100px;
  }
}

.wizard-content .table-bordered tr td .quantity-input {
  margin: auto;
}

.wizard-table {
  width: 100%;
}

.wizard-content .table tr {
  vertical-align: middle;
}

.wizard-content .table .form-select {
  min-width: 150px;
}

.wizard-header {
  display: grid;
  grid-template-columns: 1fr 100px 2fr 1fr;
  background: var(--light-gray);
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-weight: 600;
}

.wizard-components {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.component-row {
  display: flex;
  align-items: center;
  padding: 1rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
}

.component-label {
  width: 200px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.required-badge,
.optional-badge {
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 4px;
}

.required-badge {
  background-color: var(--primary-color);
  color: white;
}

.optional-badge {
  background-color: #ccc;
  color: white;
}

.component-selection {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.wizard-content .product-image {
  width: 50px;
  height: 50px;
  border-radius: 4px;
  overflow: hidden;
}

.wizard-content .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9);
}

.component-selection .form-select {
  flex: 1;
  max-width: 400px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .wizard-header {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }

  .component-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .component-label {
    width: 100%;
  }

  .component-selection {
    width: 100%;
  }

  .component-selection .form-select {
    max-width: 100%;
  }
}

.modal-header {
  border-bottom: 1px solid var(--gray);
  padding: 1.5rem;
}

.modal-header .modal-title {
  font-weight: 600;
  font-size: 18px;
  color: var(--black);
}

.modal-header .btn-close {
  background: none;
  opacity: 1;
  padding: 0;
  width: 24px;
  height: 24px;
  position: relative;
}

.modal-header .btn-close::before,
.modal-header .btn-close::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 16px;
  background-color: var(--black);
  top: 50%;
  left: 50%;
}

.modal-header .btn-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal-header .btn-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.modal-body {
  padding: 1.5rem;
}

.modal-body p {
  font-size: 16px;
  color: var(--black);
  margin-bottom: 0;
}

.modal-footer {
  border-top: 1px solid var(--gray);
  padding: 1.5rem;
}

.modal-backdrop.show {
  opacity: 0.5;
}

/* Modal animation */
.modal.fade .modal-dialog {
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.modal.show .modal-dialog {
  transform: scale(1);
}

.select2-container--default .select2-selection--single {
  height: 38px;
  border: 1px solid var(--gray);
  border-radius: 6px;
  background-color: var(--white);
}

.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  line-height: 36px;
  padding-left: 12px;
  color: var(--black);
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  height: 36px;
}

.select2-dropdown {
  border: 1px solid var(--gray);
  border-radius: 6px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid var(--gray);
  border-radius: 4px;
  padding: 6px 8px;
}

.select2-container--default
  .select2-search--dropdown
  .select2-search__field:focus {
  outline: none;
  border-color: var(--primary-color);
}

.select2-container--default
  .select2-results__option--highlighted[aria-selected] {
  background-color: var(--primary-color);
}

.select2-results__option {
  padding: 8px 12px;
}

/* .select2-container--default .select2-selection--single:focus,
.select2-container--default.select2-container--open .select2-selection--single {
    border-color: var(--primary-color) box-shadow: 0 0 0 0.2rem rgba(246, 137, 50, 0.25);
} */

/* Loading animasyonu */
.select2-container--default .select2-results__option--loading {
  padding: 8px 12px;
  color: #6c757d;
}

/* Placeholder stili */
.select2-container--default
  .select2-selection--single
  .select2-selection__placeholder {
  color: #6c757d;
}

/* Disabled durumu */
.select2-container--default.select2-container--disabled
  .select2-selection--single {
  background-color: #e9ecef;
  opacity: 0.65;
}

/* Select2 Search and Dropdown Styles */

.select2-container--default .select2-selection--single {
  height: 40px;
  border: 1px solid #ced4da;
  border-radius: 4px;
  padding: 6px 12px;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  line-height: 28px;
  padding-left: 0;
  color: #212529;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  height: 38px;
  width: 30px;
}

.select2-dropdown {
  border: 1px solid #ced4da;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.select2-search--dropdown {
  padding: 8px;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #ced4da;
  border-radius: 4px;
  padding: 6px 12px;
  height: 36px;
}

.select2-container--default
  .select2-search--dropdown
  .select2-search__field:focus {
  border-color: var(--primary-color);
  outline: none;
}

.select2-container--default .select2-results__option {
  padding: 8px 12px;
  font-size: 14px;
}

.select2-container--default
  .select2-results__option--highlighted[aria-selected] {
  background-color: var(--primary-color);
}

.select2-results__option[aria-selected='true'] {
  background-color: #f8f9fa;
}

.select2-container--default.select2-container--open .select2-dropdown {
  margin-top: 2px;
}

.select2-container--default .select2-results > .select2-results__options {
  max-height: 250px;
  overflow-y: auto;
}

/* Select2 Loading State */
.select2-container--default .select2-results__option.loading-results {
  padding: 8px 12px;
  color: #6c757d;
}

/* Select2 No Results State */
.select2-container--default .select2-results__message {
  padding: 8px 12px;
  color: #6c757d;
  font-style: italic;
}

/* Select2 Error State */
.is-invalid + .select2-container .select2-selection {
  border-color: #dc3545;
}

/* Quote Form Styles */
.get-quote {
  background: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid var(--gray);
}

.get-quote h5 {
  font-weight: 600;
  color: var(--black);
  font-size: 18px;
}

.quote-form .form-group {
  display: flex;
  align-items: center;
}

.quote-form .form-group label {
  font-weight: 500;
  font-size: 14px;
  width: 30%;
  color: var(--black);
  margin-bottom: 0;
}

.quote-form .form-control {
  height: 40px;
  font-size: 14px;
}

.quote-form .input-group-text {
  background: var(--gray);
  border-color: #dee2e6;
  color: var(--black);
  font-weight: 500;
  height: 40px;
}

.quote-buttons {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.quote-buttons button {
  flex: 1;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 14px;
}

.quote-buttons button svg {
  width: 18px;
  height: 18px;
}

/* Responsive styles */
@media (max-width: 768px) {
  .get-quote {
    margin-bottom: 1rem;
  }

  .quote-form .form-group label {
    margin-bottom: 0.5rem;
  }

  .quote-buttons {
    flex-direction: column;
  }

  .quote-buttons button {
    width: 100%;
  }

  .quote-form .form-group {
    flex-direction: column;
  }

  .quote-form .form-group label {
    width: 100%;
  }
}

/* Quote Form Display States */
.get-quote {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.get-quote.show {
  display: block;
  opacity: 1;
}

/* Document Viewer Styles */
.doc-viewer {
  background: #fff;
  border-radius: 8px;
  border: 1px solid var(--gray);
  overflow: hidden;
}

.doc-viewer .doc-header {
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--gray);
  background: #f8f9fb;
}

.doc-viewer .doc-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.doc-viewer .doc-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray);
  border-radius: 8px;
}

.doc-viewer .doc-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--primary-color);
}

.doc-viewer .doc-details h6 {
  margin: 0 0 4px;
  font-weight: 600;
}

.doc-viewer .doc-type {
  font-size: 13px;
  color: #666;
}

.doc-viewer .download-doc {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 8px 16px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.doc-viewer .download-doc:hover {
  background: #e07722;
  cursor: pointer";
}

.doc-viewer .download-doc svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.doc-viewer .doc-preview {
  padding: 1rem;
  min-height: 600px;
}

.doc-viewer .doc-preview iframe {
  width: 100%;
  height: 100%;
  min-height: 600px;
  border: none;
}

@media (max-width: 768px) {
  .doc-viewer .doc-header {
    flex-direction: column;
    gap: 1rem;
  }

  .doc-viewer .download-doc {
    width: 100%;
    justify-content: center;
  }
}

.doc-fallback {
  padding: 2rem;
  text-align: center;
  background: #f8f9fb;
  border-radius: 8px;
}

.doc-fallback p {
  margin: 0;
  color: #666;
}

.doc-preview object {
  background: #fff;
}

/* CSS stilleri */
.main-button-next,
.main-button-prev {
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  color: var(--primary-color);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-button-next svg,
.main-button-prev svg {
  width: 30px;
}

.main-button-next:hover,
.main-button-prev:hover {
  background-color: var(--primary-color);
  color: #fff;
}

div.dt-container .dt-search input {
  height: 28px;
}

.main-button-next:after,
.main-button-prev:after {
  font-size: 16px;
  font-weight: 700;
}

/* Disable durumu için stil */
.main-button-next.swiper-button-disabled,
.main-button-prev.swiper-button-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
  .main-button-next,
  .main-button-prev {
    width: 30px;
    height: 30px;
  }

  .main-swiper-next:after,
  .main-swiper-prev:after {
    font-size: 14px;
  }
}

.main-slide {
  position: relative;
}

.main-slide .slide-link {
  width: 100%;
  display: block;
  /* height: 500px; */
  overflow: hidden;
  border-radius: 8px;
}

.main-slide .slide-link img {
  width: 100%;
  /* height: 500px; */
  /* object-fit: cover; */
}

.main-slide .main-button-next {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
}

.main-slide .main-button-prev {
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
}

/* Product Compare Table */
.product-compare .table {
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
  border-collapse: collapse;
}

.product-compare .table th,
.product-compare .table td {
  padding: 1rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
  text-align: center;
}

.product-compare .table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
  background-color: var(--primary-color);
  color: #fff;
  font-weight: 700;
}

.product-compare .table tbody tr:nth-of-type(odd) {
  background-color: #f8f9fa;
}

.product-compare .table tbody tr:hover {
  background-color: #e9ecef;
}

.product-compare .table img {
  max-width: 100px;
  height: auto;
  display: block;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .product-compare .table thead {
    display: none;
  }

  .product-compare .table,
  .product-compare .table tbody,
  .product-compare .table tr,
  .product-compare .table td {
    display: block;
    width: 100%;
  }

  .product-compare .table tr {
    margin-bottom: 1rem;
    border-bottom: 2px solid #dee2e6;
  }

  .product-compare .table td {
    text-align: right;
    padding-left: 50%;
    position: relative;
  }

  .product-compare .table td::before {
    content: attr(data-label);
    position: absolute;
    left: 0;
    width: 50%;
    padding-left: 1rem;
    font-weight: 700;
    text-align: left;
    background-color: #f8f9fa;
  }
}

.error-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #f8f9fa;
}

.error-page h1 {
  font-size: 10rem;
  font-weight: 700;
  color: var(--primary-color);
}

.error-page h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 1rem;
}

.error-page p {
  font-size: 1.25rem;
  color: #666;
  margin-bottom: 2rem;
}

.error-page .btn {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.error-page .btn:hover {
  background-color: #e07722;
}

.announcement-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  overflow: hidden;
  position: relative;
}

.announcement-card .announcement-content {
  box-shadow: none;
}

.announcement-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.announcement-wrapper {
  display: flex;
  align-items: stretch;
}

.announcement-image {
  width: 300px;
  min-width: 300px;
  position: relative;
  overflow: hidden;
}

.announcement-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.announcement-card:hover .announcement-image img {
  transform: scale(1.1);
}

.announcement-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.announcement-title {
  font-size: 24px;
  font-weight: 600;
  color: #282828;
  margin-bottom: 15px;
}

.announcement-text {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.announcement-date {
  font-size: 14px;
  color: #999;
  display: flex;
  align-items: center;
  gap: 5px;
}

.announcement-date svg {
  width: 16px;
  height: 16px;
}

.announcement-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--primary-color);
  color: #fff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .announcement-wrapper {
    flex-direction: column;
  }

  .announcement-image {
    width: 100%;
    height: 200px;
  }

  .announcement-title {
    font-size: 20px;
  }

  .announcement-text {
    font-size: 14px;
  }
}

.announcement-detail .row {
  margin: 0 -15px;
}

.announcement-content {
  padding: 30px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.announcement-content .post-header {
  margin-bottom: 30px;
}

.announcement-content .post-header .category {
  display: inline-block;
  padding: 5px 15px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 15px;
}

.announcement-content .post-header .title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 15px;
}

.announcement-content .post-header .meta {
  color: #666;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.announcement-content .post-header .meta svg {
  width: 16px;
  height: 16px;
}

.announcement-sidebar {
  position: sticky;
  top: 170px;
}

.sidebar-widget {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.sidebar-widget h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.recent-posts {
  list-style: none;
  padding: 0;
  margin: 0;
}

.recent-posts li {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.recent-posts li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border: none;
}

.recent-posts li a {
  display: flex;
  gap: 15px;
  text-decoration: none;
  color: #282828;
}

.recent-posts li a:hover {
  color: var(--primary-color);
}

.recent-posts .post-image {
  width: 80px;
  height: 60px;
  border-radius: 6px;
  overflow: hidden;
}

.recent-posts .post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recent-posts .post-info h6 {
  font-size: 14px;
  margin: 0 0 5px;
}

.recent-posts .post-info span {
  font-size: 12px;
  color: #666;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tags a {
  display: inline-block;
  padding: 5px 12px;
  background: #f5f5f5;
  border-radius: 20px;
  color: #666;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.tags a:hover {
  background: var(--primary-color);
  color: #fff;
}

.payment-cards-table {
  margin: 20px 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.payment-cards-table table {
  width: 100%;
  border-collapse: collapse;
}

.payment-cards-table thead tr {
  vertical-align: middle;
}

.payment-cards-table thead th {
  background: #f8f9fa;
  padding: 15px;
  font-size: 13px;
  line-height: 1.1;
  font-weight: 600;
  color: #282828;
  text-align: left;
  white-space: nowrap;
}

.payment-cards-table tbody td {
  padding: 15px;
  font-size: 14px;
  color: #666;
  border-top: 1px solid #eee;
  vertical-align: middle;
}

.payment-cards-table tbody tr:last-child td {
  border-bottom: 0;
}

.payment-cards-table .bank-logo {
  width: 75px;
  height: auto;
}

.payment-cards-table .form-check {
  margin: 0;
}

.payment-cards-table .form-check-input {
  margin-top: 0;
}

.payment-cards-table .installment-description {
  color: #282828;
  font-weight: 500;
}

.payment-cards-table .rate {
  color: var(--primary-color);
  font-weight: 500;
}

.payment-cards-table .amount {
  font-weight: 500;
  color: #282828;
}

.payment-cards-table .total {
  color: var(--primary-color);
  font-weight: 600;
}

@media (max-width: 991px) {
  .payment-cards-table {
    overflow-x: auto;
  }

  .payment-cards-table table {
    min-width: 900px;
  }
}

.payment-cards-table tbody tr {
  cursor: pointer;
}

.payment-cards-table tbody tr:hover {
  background-color: #f8f9fa;
}

.payment-cards-table tbody tr.selected {
  background-color: #f0f7ff;
}

/* Sub Categories Dropdown */
eksa-b2b-main .sub-categories {
    display: none;
    position: absolute;
    left: 100%;
    top: -1px;
    width: 1110px;
    height: 100%;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1001;
}

.main-list {
  &:has(.categories-list li:hover) .sub-categories {
    display: block !important;
    height: 500px !important;
  }

  .sub-categories:hover {
    display: block !important;
    height: 500px !important;
  }
}

.sub-menu-wrapper {
  width: 100%;
}

.subcategory-list {
  margin-bottom: 20px;
}

.subcategory-list h6 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #282828;
}

.subcategory-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
max-height: 400px;
overflow-y: auto;

}

.subcategory-list ul li {
  margin-bottom: 8px;
  padding: 0.5rem 0;
}

.subcategory-list ul li a {
  color: #666;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  padding: 0 0.5rem;
}

.subcategory-list ul li a:hover {
  color: #282828;
}

.featured-products {
  margin-top: 20px;
}

.categories-list .featured-card {
  flex-direction: column;
}

.featured-products h6 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #282828;
}

.featured-card {
  display: block;
  text-decoration: none;
  padding: 10px;
  border-radius: 6px;
  transition: background-color 0.2s;
}



.featured-image {
  width: 100%;
  margin-bottom: 8px;
  border-radius: 4px;
  overflow: hidden;
}

.featured-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.featured-title {
  font-size: 13px;
  color: #666;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}

/* Responsive Sub Categories */
@media (max-width: 991px) {
  .categories-list li .sub-categories {
    display: none;
  }
}

/* Menu Backdrop */
.menu-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1001;
}

.menu-backdrop.show {
  opacity: 1;
  visibility: visible;
}

.paymeny-summary {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: calc(var(--header-height) - 30px);
  transition: top 0.3s ease;
  max-height: calc(100vh - var(--header-height) - 40px);
  overflow-y: auto;
}

.paymeny-summary.not-sticky {
  position: relative;
  top: 0;
}

@media (max-width: 991px) {
  .paymeny-summary {
    position: relative;
    top: 0;
    margin-top: 30px;
    max-height: none;
    overflow-y: visible;
  }
}

.payment-summary-content {
  padding: 20px;
}

.summary-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.summary-details .summary-item {
  display: flex;
  justify-content: space-between;
  padding-bottom: 10px;
  margin-bottom: 10px;
  color: #666;
  font-size: 14px;
}

.summary-details .summary-item:last-child {
  border-bottom: 0;
}

.summary-total {
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  font-size: 16px;
  color: #282828;
}

.amount {
  font-weight: 500;
  color: #282828;
}

@media (max-width: 991px) {
  .paymeny-summary {
    position: relative;
    top: 0;
    margin-top: 30px;
  }
}

.summary-inputs {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #eee;
  display: none;
  /* Initially hidden */
}

.summary-inputs.visible {
  display: block;
}

.summary-inputs .form-group {
  margin-bottom: 15px;
}

.summary-inputs .form-control,
.summary-inputs .form-select {
  font-size: 13px;
  padding: 8px 12px;
  height: auto;
}

.summary-inputs .form-label {
  font-size: 12px;
  margin-bottom: 4px;
}

.summary-inputs .form-group.card-details {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.summary-inputs .form-group.card-details > div {
  flex: 1 1 calc(50% - 4px);
}

.summary-inputs .form-group.card-details > div.full-width {
  flex: 1 1 100%;
}

.summary-inputs .form-control.small {
  font-size: 12px;
  padding: 6px 10px;
}

.summary-inputs .form-group.payment-details {
  display: flex;
  gap: 8px;
  margin-bottom: 15px;
}

.summary-inputs .form-group.payment-details > div {
  flex: 1;
}

.summary-inputs .form-group.payment-details .form-control,
.summary-inputs .form-group.payment-details .form-select {
  width: 100%;
}

.summary-inputs .form-group.payment-details .form-select.small {
  font-size: 12px;
  padding: 6px 10px;
}

.summary-inputs .primary-button.small,
.summary-inputs .secondary-button.small {
  padding: 4px 9px;
  min-width: 100px;
  white-space: nowrap;
  gap: 5px;
  font-size: 12px;
  height: 40px;
}

.order-summary-wrapper {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin-bottom: 20px;
}

.order-summary-wrapper .order-header {
  padding-bottom: 20px;
  border-bottom: 1px solid #e5e5e5;
}

.order-summary-wrapper .order-status .badge {
  padding: 6px 12px;
  font-weight: 500;
  font-size: 13px;
}

.order-summary-wrapper .order-date {
  color: #666;
  font-size: 14px;
}

.order-summary-wrapper .order-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.order-summary-wrapper .order-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 6px;
}

.order-summary-wrapper .order-item .title {
  font-size: 13px;
  color: #666;
  margin-bottom: -5px;
  display: block;
}

.order-summary-wrapper .product-image {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.order-summary-wrapper .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.order-summary-wrapper .product-info {
  flex: 1;
}

.order-summary-wrapper .product-info h6 {
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
}

.order-summary-wrapper .product-details {
  display: flex;
  gap: 15px;
  font-size: 13px;
  color: #666;
}

.order-summary-wrapper .product-price {
  text-align: left;
  font-weight: 600;
  white-space: nowrap;
}

.order-summary-wrapper .product-price .currency {
  font-size: 13px;
  color: #666;
  margin-left: 4px;
}

.order-summary-wrapper .order-summary {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.order-summary-wrapper .summary-item {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #666;
}

.order-summary-wrapper .summary-total {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  font-size: 16px;
  margin-top: 10px;
  padding-top: 15px;
  border-top: 1px solid #e5e5e5;
}

.order-summary-wrapper .delivery-info,
.order-summary-wrapper .shipping-info {
  font-size: 14px;
  line-height: 1.5;
}

/* Responsive Styles */
@media (max-width: 767px) {
  .order-summary-wrapper .order-item {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .order-summary-wrapper .product-image {
    width: 100%;
    height: 200px;
  }

  .order-summary-wrapper .product-details {
    flex-direction: column;
    gap: 5px;
  }

  .order-summary-wrapper .product-price {
    text-align: left;
    margin-top: 10px;
  }

  .order-summary-wrapper .order-header {
    text-align: center;
  }

  .order-summary-wrapper .order-status {
    margin-top: 10px;
  }
}

@media (max-width: 575px) {
  .order-summary-wrapper {
    padding: 15px;
  }

  .order-summary-wrapper .product-image {
    height: auto;
  }

  .order-summary-wrapper .summary-item,
  .order-summary-wrapper .summary-total {
    font-size: 13px;
  }

  .order-summary-wrapper .delivery-info,
  .order-summary-wrapper .shipping-info {
    font-size: 13px;
  }
}

/* Kaydırma göstergesi stilleri */
.scroll-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px;
  color: #666;
  font-size: 14px;
}

/* Sadece yatay kaydırma varsa göster */
@media (max-width: 992px) {
  .table-responsive::-webkit-scrollbar {
    height: 6px;
  }

  .table-responsive::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
  }

  .scroll-indicator {
    display: flex;
  }
}

/* Card Styles */
.order-summary-wrapper .card {
  border: 1px solid #e5e5e5;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.order-summary-wrapper .card-title {
  color: #333;
  font-weight: 600;
}

/* Button Styles */
.order-summary-wrapper .btn-outline-primary {
  border-color: #0d6efd;
  color: #0d6efd;
  padding: 6px 12px;
  font-size: 13px;
}

.order-summary-wrapper .btn-outline-primary:hover {
  background-color: #0d6efd;
  color: #fff;
}

/* Offer Detail Styles */
.offer-wrapper {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
}

.offer-wrapper .table {
  margin-bottom: 0;
  font-size: 14px;
}

.offer-wrapper .table th {
  font-weight: 600;
  color: var(--text-color);
  padding: 12px;
  white-space: nowrap;
}

.offer-wrapper .table td {
  padding: 12px;
  vertical-align: middle;
}

.offer-wrapper .price-input {
  width: 120px;
  text-align: right;
}

.offer-wrapper .offer-summary {
  width: 100%;
  max-width: 400px;
  margin-left: auto;
  margin-bottom: 2rem;
  padding: 1rem;
  background: var(--light-bg);
  border-radius: 8px;
}

.offer-wrapper .summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  font-size: 14px;
  color: var(--text-color);
}

.offer-wrapper .summary-item.total {
  font-weight: 600;
  border-top: 1px solid var(--border-color);
  margin-top: 0.5rem;
  padding-top: 0.75rem;
}

.offer-wrapper .action-buttons {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
}

.offer-wrapper .action-buttons .btn {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  font-size: 14px;
  font-weight: 500;
  border-color: var(--border-color);
  color: var(--text-color);
  transition: all 0.2s ease;
}

.offer-wrapper .action-buttons .btn:hover {
  background-color: var(--light-bg);
  border-color: var(--border-hover-color);
}

.offer-wrapper .action-buttons .btn svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 991px) {
  .offer-wrapper .action-buttons {
    flex-wrap: wrap;
  }

  .offer-wrapper .action-buttons .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .offer-wrapper {
    padding: 1rem;
  }

  .offer-wrapper .price-input {
    width: 100px;
  }
}

.offer-wrapper {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 20px;
}

.offer-header {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e5e5e5;
}

.offer-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

.offer-date {
  color: #666;
  font-size: 14px;
}

.offer-table {
  width: 100%;
  margin-bottom: 20px;
}

.offer-table th {
  background: #f8f9fa;
  padding: 12px;
  font-weight: 600;
  font-size: 14px;
  color: #333;
}

.offer-table td {
  padding: 12px;
  vertical-align: middle;
  border-bottom: 1px solid #e5e5e5;
}

.price-input {
  width: 100px;
  padding: 4px 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.offer-summary {
  width: 300px;
  margin-left: auto;
  margin-bottom: 30px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
}

.summary-item.total {
  font-weight: 600;
  border-top: 1px solid #e5e5e5;
  margin-top: 8px;
  padding-top: 12px;
}

.action-buttons {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.action-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  border: 1px solid #ddd;
  background: #fff;
  color: #333;
  transition: all 0.2s;
}

.action-button:hover {
  background: #f8f9fa;
}

.action-button svg {
  width: 16px;
  height: 16px;
}

.welcome-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.welcome-modal.active {
  display: flex;
}

.welcome-modal-content {
  background: #fff;
  border-radius: 8px;
  max-width: 500px;
  width: 90%;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.welcome-modal-header {
  padding: 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.welcome-modal-close {
  background: none;
  border: none;
  padding: 0;
  width: 24px;
  height: 24px;
  cursor: pointer;
  color: #666;
  transition: all 0.2s;
  position: absolute;
  right: 5px;
  top: 5px;
  background: #fff;
  border-radius: 50%;
  opacity: 0.8;
}

.welcome-modal-close:hover {
  color: #282828;
  opacity: 1;
  transition: all 0.2s;
}

.welcome-modal-body {
  padding: 20px;
}

.welcome-modal-body img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

/* Countdown Timer Styles */
.countdown-timer {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #fff;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.countdown-item {
  display: flex;
  align-items: center;
  flex-direction: column;
  flex: 1;
}

.countdown-item .value {
  font-size: 16px;
  font-weight: 900;
  color: var(--primary-color);
}

.countdown-item .label {
  font-size: 12px;
  color: #666;
}

.countdown-separator {
  color: #282828;
  font-weight: 600;
}

.countdown-header {
  flex: 1;
}

.countdown-header h3 {
  font-size: 1.25rem;
  color: #282828;
  margin-bottom: 0.5rem;
}

.countdown-header p {
  color: #666;
  margin: 0;
}

.dataTables_wrapper .dt-buttons {
  margin-bottom: 15px;
}

.dataTables_filter {
  margin-bottom: 15px;
}

/* New pagination styles */
.dataTables_paginate {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.dataTables_paginate .paginate_button {
  padding: 8px 12px;
  margin: 0 2px;
  border: 1px solid #dee2e6;
  color: #333;
  cursor: pointer;
  background: #fff;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.dataTables_paginate .paginate_button:hover {
  background-color: #e9ecef;
  border-color: #dee2e6;
  color: #0d6efd;
  text-decoration: none;
}

.dataTables_paginate .paginate_button.current {
  background-color: #0d6efd;
  border-color: #0d6efd;
  color: #fff;
}

.dataTables_paginate .paginate_button.disabled {
  color: #6c757d;
  pointer-events: none;
  background-color: #fff;
  border-color: #dee2e6;
}

.dataTables_info {
  margin-top: 20px;
  color: #6c757d;
  text-align: center;
}

.dataTables_filter input {
  border: 1px solid #dee2e6;
  border-radius: 4px;
  padding: 6px 12px;
  margin-left: 8px;
}

.dataTables_filter input:focus {
  outline: none;
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

/* Updated pagination styles */
.dataTables_wrapper .dataTables_paginate {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
  padding: 8px 12px;
  background: #fff;
  border: 1px solid #e5e5e5;
  color: #282828;
  cursor: pointer;
  margin: 0;
  min-width: 35px;
  height: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: all 0.2s ease;
  font-size: 14px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  background-color: #fff4ef !important;
  border-color: #f68932;
  color: #f68932 !important;
  text-decoration: none;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
  background-color: #f68932;
  border-color: #f68932;
  color: #fff !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.disabled {
  color: #9e9e9e;
  pointer-events: none;
  background-color: #f5f5f5;
  border-color: #e5e5e5;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.previous,
.dataTables_wrapper .dataTables_paginate .paginate_button.next {
  padding: 8px 15px;
}

.dataTables_info {
  margin: 20px 0;
  color: #666;
  font-size: 14px;
}

/* Update button colors to match site theme */
.dt-buttons .dt-button {
  background-color: #f68932 !important;
  border-color: #f68932 !important;
  color: #fff !important;
}

div.dt-buttons > .dt-button:focus:not(.disabled),
div.dt-buttons > div.dt-button-split .dt-button:focus:not(.disabled) {
  outline: none !important;
}

.dt-buttons .dt-button:hover {
  background-color: #e55a2d !important;
  border-color: #e55a2d !important;
}

/* DataTable - Statement Table Styles */
.table-statment.dataTable {
  border-collapse: collapse;
  width: 100%;
}

.table-statment.dataTable thead th {
  background-color: #f8f9fa;
  border-bottom: 2px solid #dee2e6;
  padding: 12px 8px;
  font-weight: 600;
  color: #333;
}

.table-statment.dataTable tbody td {
  padding: 10px 8px;
  border-bottom: 1px solid #dee2e6;
}

/* Pagination Styles */
.table-statment.dataTable .dataTables_paginate {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.table-statment.dataTable .dataTables_paginate .paginate_button {
  padding: 8px 12px;
  background: #fff;
  border: 1px solid #e5e5e5;
  color: #282828;
  cursor: pointer;
  margin: 0;
  min-width: 35px;
  height: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: all 0.2s ease;
  font-size: 14px;
}

.table-statment.dataTable .dataTables_paginate .paginate_button:hover {
  background-color: #fff4ef !important;
  border-color: #f68932 !important;
  color: #f68932 !important;
  text-decoration: none;
}

.table-statment.dataTable .dataTables_paginate .paginate_button.current {
  background-color: #f68932 !important;
  border-color: #f68932 !important;
  color: #fff !important;
}

.table-statment.dataTable .dataTables_paginate .paginate_button.disabled {
  color: #9e9e9e !important;
  pointer-events: none;
  background-color: #f5f5f5;
  border-color: #e5e5e5;
}

/* Search and Length Control Styles */
.table-statment.dataTable .dataTables_filter input {
  border: 1px solid #dee2e6;
  border-radius: 4px;
  padding: 6px 12px;
  margin-left: 8px;
}

.table-statment.dataTable .dataTables_filter input:focus {
  outline: none;
  border-color: #f68932;
  box-shadow: 0 0 0 0.2rem rgba(255, 102, 52, 0.25);
}

/* Export Buttons */
.table-statment.dataTable .dt-buttons .dt-button {
  background-color: #f68932 !important;
  color: white !important;
  border: none;
  padding: 6px 12px;
  margin-right: 5px;
  border-radius: 4px;
  cursor: pointer;
}

.table-statment.dataTable .dt-buttons .dt-button:hover {
  background-color: #e55a2d !important;
}

.sign-up-page .login-wrapper {
  max-width: 600px;
}

.sign-up-page .captcha-group {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sign-up-page .captcha-group img {
  height: 40px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.sign-up-page .captcha-group svg {
  cursor: pointer;
  width: 16px;
  height: 16px;
  min-width: 16px;
}

.sign-up-page .captcha-group span {
  font-size: 13px;
}

.sign-up-validation .captcha-group {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sign-up-validation .captcha-group img {
  height: 40px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.sign-up-validation .captcha-group svg {
  cursor: pointer;
  color: var(--black);
  fill: var(--black);
  width: 16px;
  height: 16px;
  min-width: 16px;
}

.sign-up-validation .captcha-group span {
  font-size: 13px;
  color: var(--black);
}

.sign-up-page .error {
  border-color: #dc3545 !important;
}

.sign-up-page .error-message {
  color: #dc3545;
  font-size: 12px;
  margin-top: 5px;
  display: none;
}

@media (min-width: 768px) {
  .sign-up-page .captcha-group span {
    white-space: nowrap;
  }
}

@media (max-width: 768px) {
  .sign-up-page .captcha-group {
    flex-wrap: wrap;
  }
}

.sign-up-validation {
  min-height: auto;
  display: block;
}

.sign-up-page .login-box {
  background-color: var(--gray);
}

.sign-up-validation .form-section {
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.sign-up-validation .form-section h3 {
  color: #333;
  font-size: 1.2rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.sign-up-validation .form-group label {
  font-size: 14px;
  color: #555;
  margin-bottom: 5px;
  display: block;
}

.sign-up-validation .form-control.file-input {
  padding: 8px;
  font-size: 14px;
}

.sign-up-validation .form-select {
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  height: 38px;
}

.sign-up-validation .error-message {
  display: none;
  color: #dc3545;
  font-size: 12px;
  position: absolute;
  margin-top: 2px;
}

.sign-up-validation .form-group {
  position: relative;
  margin-bottom: 1rem;
}

.sign-up-validation .date-inputs {
  display: flex;
  gap: 10px;
}

.sign-up-validation .date-inputs select {
  flex: 1;
}

.sign-up-validation .form-control,
.sign-up-validation .form-select {
  height: auto !important;
  padding: 0.375rem 1rem;
}

.sign-up-validation .primary-button,
.sign-up-validation .secondary-button {
  height: 38px;
}

@media (max-width: 576px) {
  .sign-up-validation {
    padding: 1rem 0;
  }

  .sign-up-validation .login-box {
    padding: 1rem;
  }
}

/* Mobile Cart Fixed Bottom */
.mobile-cart {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid #dee2e6;
  box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.1);
  z-index: 999;
  padding: 1rem;
}

.mobile-cart-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 100%;
}

.mobile-cart-product {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: none;
  min-width: 0;
  width: 100%;
}

.mobile-cart .product-image {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.mobile-cart .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mobile-cart .product-info {
  flex: 1;
  min-width: 0;
}

.mobile-cart .product-name {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 4px 0;
  color: var(--black);
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-clamp: 2;

}

.mobile-cart .product-price {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.mobile-cart .product-price .price {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-color);
}

.mobile-cart .product-price .currency {
  font-size: 12px;
  font-weight: 500;
  color: var(--black);
}

.mobile-cart-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-shrink: 0;
  width: 100%;
}

.mobile-cart .quantity-controls {
  display: flex;
  align-items: center;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  overflow: hidden;
}

.mobile-cart .quantity-btn {
  width: 32px;
  height: 32px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 0;
}

.mobile-cart .quantity-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.mobile-cart .quantity-input {
  width: 50px;
  height: 32px;
  border: none;
  border-left: 1px solid #dee2e6;
  border-right: 1px solid #dee2e6;
  border-radius: 0;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  padding: 0;
}

.mobile-cart .quantity-input:focus {
  box-shadow: none;
  border-color: #dee2e6;
}

.mobile-cart .add-to-cart-btn {
  height: 40px;
  padding: 0 1rem;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  border-radius: 6px;
  width: auto;
}

.mobile-cart .add-to-cart-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Responsive */
@media (max-width: 375px) {
  .mobile-cart {
    padding: 0.75rem;
  }

  .mobile-cart-content {
    gap: 0.75rem;
  }

  .mobile-cart .product-name {
    font-size: 13px;
  }

  .mobile-cart .add-to-cart-btn {
    padding: 0 0.75rem;
    font-size: 13px;
  }

  .mobile-cart .quantity-input {
    width: 45px;
  }
}

/* Quantity Control Styles */
.quantity-control {
  display: flex;
  align-items: center;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  overflow: hidden;
  width: fit-content;
  margin: 0 auto;
}

.quantity-btn {
  width: 32px;
  height: 32px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background-color: #f8f9fa;
  color: #6c757d;
  transition: all 0.2s ease;
}

.quantity-btn:hover {
  background-color: #e9ecef;
  color: #495057;
}

.quantity-btn:active {
  background-color: #dee2e6;
}

.quantity-btn.minus {
  border-radius: 6px 0 0 6px;
}

.quantity-btn.plus {
  border-radius: 0 6px 6px 0;
}

.quantity-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.quantity-control .quantity-input {
  width: 50px;
  height: 32px;
  border: none;
  border-left: 1px solid #dee2e6;
  border-right: 1px solid #dee2e6;
  border-radius: 0;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  padding: 0;
  background-color: #fff;
}

.quantity-control .quantity-input:focus {
  box-shadow: none;
  border-color: #dee2e6;
  outline: none;
}

.quantity-control .quantity-input[readonly] {
  background-color: #f8f9fa;
  cursor: default;
}
 