/*
Template Name: Electro - HTML Ecommerce Template
Author: yaminncco

Colors:
	Body 		: #333
	Headers 	: #2B2D42
	Primary 	: #EB7E1D
	Dark 		: #15161D ##1E1F29
	Grey 		: #E4E7ED #FBFBFC #8D99AE #B9BABC

Fonts: Montserrat

Table OF Contents
------------------------------------
1 > GENERAL
------ Typography
------ Buttons
------ Inputs
------ Sections
------ Breadcrumb
2 > HEADER
------ Top header
------ Logo
------ Search
------ Cart
3 > NAVIGATION
------ Main nav
------ Responsive Nav
4 > CATEGORY SHOP
5 > HOT DEAL
6 > PRODUCT
------ Product
------ Widget product
------ Product slick
7 > STORE PAGE
------ Aside
------ Store
8 > PRODUCT DETAILS PAGE
------ Product view
------ Product details
------ Product tab
9 > CHECKOUT PAGE
10 > NEWSLETTER
11 > FOOTER
11 > SLICK STYLE
12 > RESPONSIVE
------------------------------------*/

/*=========================================================
	01 -> GENERAL
===========================================================*/

/*----------------------------*\
	Typography
\*----------------------------*/

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  color: #333;
}

h1, h2, h3, h4, h5, h6 {
  color: #2B2D42;
  font-weight: 700;
  margin: 0 0 10px;
}

a {
  color: #2B2D42;
  font-weight: 500;
  -webkit-transition: 0.2s color;
  transition: 0.2s color;
}

a:hover, a:focus {
  color: #EB7E1D;
  text-decoration: none;
  outline: none;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none
}

/*----------------------------*\
	Buttons
\*----------------------------*/

.primary-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #EB7E1D;
  border: none;
  border-radius: 40px;
  color: #FFF;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.primary-btn:hover, .primary-btn:focus {
  opacity: 0.9;
  color: #FFF;
}

/*----------------------------*\
	Inputs
\*----------------------------*/

/*-- Text input --*/

.input {
  height: 40px;
  padding: 0px 15px;
  border: 1px solid #E4E7ED;
  background-color: #FFF;
  width: 100%;
}

textarea.input {
  padding: 15px;
  min-height: 90px;
}

/*-- Number input --*/

.input-number {
  position: relative;
}

.input-number input[type="number"]::-webkit-inner-spin-button, .input-number input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.input-number input[type="number"] {
  -moz-appearance: textfield;
  height: 40px;
  width: 100%;
  border: 1px solid #E4E7ED;
  background-color: #FFF;
  padding: 0px 35px 0px 15px;
}

.input-number .qty-up, .input-number .qty-down {
  position: absolute;
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #E4E7ED;
  background-color: #FFF;
  text-align: center;
  font-weight: 700;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.input-number .qty-up {
  right: 0;
  top: 0;
  border-bottom: 0px;
}

.input-number .qty-down {
  right: 0;
  bottom: 0;
}

.input-number .qty-up:hover, .input-number .qty-down:hover {
  background-color: #E4E7ED;
  color: #EB7E1D;
}

/*-- Select input --*/

.input-select {
  padding: 0px 15px;
  background: #FFF;
  border: 1px solid #E4E7ED;
  height: 40px;
}

/*-- checkbox & radio input --*/

.input-radio, .input-checkbox {
  position: relative;
  display: block;
}

.input-radio input[type="radio"]:not(:checked), .input-radio input[type="radio"]:checked, .input-checkbox input[type="checkbox"]:not(:checked), .input-checkbox input[type="checkbox"]:checked {
  position: absolute;
  margin-left: -9999px;
  visibility: hidden;
}

.input-radio label, .input-checkbox label {
  font-weight: 500;
  min-height: 20px;
  padding-left: 20px;
  margin-bottom: 5px;
  cursor: pointer;
}

.input-radio input[type="radio"]+label span, .input-checkbox input[type="checkbox"]+label span {
  position: absolute;
  left: 0px;
  top: 4px;
  width: 14px;
  height: 14px;
  border: 2px solid #E4E7ED;
  background: #FFF;
}

.input-radio input[type="radio"]+label span {
  border-radius: 50%;
}

.input-radio input[type="radio"]+label span:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
  -ms-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
  background-color: #FFF;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.input-checkbox input[type="checkbox"]+label span:after {
  content: '✔';
  position: absolute;
  top: -2px;
  left: 1px;
  font-size: 10px;
  color: #FFF;
  opacity: 0;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.input-radio input[type="radio"]:checked+label span, .input-checkbox input[type="checkbox"]:checked+label span {
  background-color: #EB7E1D;
  border-color: #EB7E1D;
}

.input-radio input[type="radio"]:checked+label span:after {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}

.input-checkbox input[type="checkbox"]:checked+label span:after {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.input-radio .caption, .input-checkbox .caption {
  margin-top: 5px;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: 0.3s max-height;
  transition: 0.3s max-height;
}

.input-radio input[type="radio"]:checked~.caption, .input-checkbox input[type="checkbox"]:checked~.caption {
  max-height: 800px;
}

/*----------------------------*\
	Section
\*----------------------------*/

.section {
  padding-top: 30px;
  padding-bottom: 30px;
}

.section-title {
  position: relative;
  margin-bottom: 30px;
  margin-top: 15px;
}

.section-title .title {
  display: inline-block;
  text-transform: uppercase;
  margin: 0px;
}

.section-title .section-nav {
  float: right;
}

.section-title .section-nav .section-tab-nav {
  display: inline-block;
}

.section-tab-nav li {
  display: inline-block;
  margin-right: 15px;
}

.section-tab-nav li:last-child {
  margin-right: 0px;
}

.section-tab-nav li a {
  font-weight: 700;
  color: #8D99AE;
}

.section-tab-nav li a:after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background-color: #EB7E1D;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.section-tab-nav li.active a {
  color: #EB7E1D;
}

.section-tab-nav li a:hover:after, .section-tab-nav li a:focus:after, .section-tab-nav li.active a:after {
  width: 100%;
}

.section-title .section-nav .products-slick-nav {
  top: 0px;
  right: 0px;
}

/*----------------------------*\
	Breadcrumb
\*----------------------------*/

#breadcrumb {
  padding: 30px 0px;
  background: #FBFBFC;
  border-bottom: 1px solid #E4E7ED;
  margin-bottom: 30px;
}

#breadcrumb .breadcrumb-header {
  display: inline-block;
  margin-top: 0px;
  margin-bottom: 0px;
  margin-right: 15px;
  text-transform: uppercase;
}

#breadcrumb .breadcrumb-tree {
  display: inline-block;
}

#breadcrumb .breadcrumb-tree li {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

#breadcrumb .breadcrumb-tree li+li {
  margin-left: 10px;
}

#breadcrumb .breadcrumb-tree li+li:before {
  content: '/';
  display: inline-block;
  color: #8D99AE;
  margin-right: 10px;
}

#breadcrumb .breadcrumb-tree li a {
  color: #8D99AE;
}

#breadcrumb .breadcrumb-tree li a:hover {
  color: #EB7E1D;
}

/*=========================================================
	02 -> HEADER
===========================================================*/

/* Üst bilgi çubuğu */
#top-header {
  padding: 10px 0;
  background-color: #1E1F29;
  font-size: 13px;
}

.header-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.header-links li {
  display: inline-block;
  margin-right: 15px;
}

.header-links li:last-child {
  margin-right: 0;
}

.header-links li a {
  color: #FFF;
  text-decoration: none;
  transition: color 0.2s;
}

.header-links li a:hover {
  color: #EB7E1D;
}

.header-links li i {
  color: #EB7E1D;
  margin-right: 5px;
}

/* Header + Logo */
#header {
  padding: 10px 0;
  background-color: #15161D;
}

.header-logo img {
  display: block;
  width: 230px;
  height: 55px;
}

/* Navigation (Header ile renk uyumlu) */
#navigation {
  background-color: #15161D;
  border: none;
  box-shadow: none;
}

/* Menü hizalama */
.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end; /* Menü elemanlarını sağa hizala */
  gap: 25px;
  margin: 0;
  padding: 0;
  list-style: none;
  flex-wrap: nowrap; /* ❗ Alt satıra geçmesini engeller */
}

/* Menü linkleri */

.main-nav li {
  white-space: nowrap; /* Menü öğelerinin alt satıra düşmesini önler */
}

.main-nav li a {
  display: block;
  padding: 20px 0;
  color: #FFF;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

/* Hover ve aktif */
.main-nav li a:hover,
.main-nav li.active a {
  color: #EB7E1D;
  background-color: transparent;
}

/* Alt çizgi efekti */
.main-nav li a:after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #EB7E1D;
  transition: width 0.3s ease;
}

.main-nav li a:hover:after,
.main-nav li.active a:after {
  width: 100%;
}

/* ====== 2. El Ürün Sat Butonu ====== */
.main-nav li.sell-btn {
  margin-left: 20px; /* Menüden biraz boşluk bırak */
  flex-shrink: 0; /* Butonun daralmasını engeller */
}

.main-nav li.sell-btn a {
  background-color: #EB7E1D;
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  border: 2px solid #EB7E1D;
  line-height: 1;
}

/* Hover efekti */
.main-nav li.sell-btn a:hover {
  background-color: transparent;
  color: #EB7E1D !important;
  border-color: #EB7E1D;
  box-shadow: 0 0 10px rgba(235, 126, 29, 0.4);
  text-decoration: none;
}

/* Alt çizgi efekti tamamen iptal */
.main-nav li.sell-btn a::after {
  display: none !important;
  content: none !important;
}

/* Menüdeki diğer linklerle hizalanması */
.main-nav > li {
  display: inline-block;
  margin: 0 10px;
  vertical-align: middle;
}

/* 🔹 Mobil menüde uyumlu görünüm */
@media (max-width: 991px) {
  .mobile-side-nav ul li.sell-btn a {
    background-color: #EB7E1D;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    display: inline-block;
    width: auto;
    text-align: center;
    margin: 10px 0;
    border: 2px solid #EB7E1D;
    transition: all 0.3s ease;
  }

  .mobile-side-nav ul li.sell-btn a:hover {
    background-color: transparent;
    color: #EB7E1D;
    box-shadow: 0 0 10px rgba(235, 126, 29, 0.4);
    text-decoration: none;
  }

  .mobile-side-nav ul li.sell-btn a i {
    margin-left: 8px;
  }
}



/* ====== Mobil Menü ====== */
.mobile-menu-toggle {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 22px;
}

.mobile-menu-toggle span {
  display: block;
  height: 3px;
  background: #EB7E1D;
  margin-bottom: 5px;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-side-nav {
  position: fixed;
  right: -250px;
  top: 0;
  width: 250px;
  height: 100vh;
  background: #15161D;
  padding-top: 80px;
  transition: right 0.3s ease;
  z-index: 999;
}

.mobile-side-nav ul {
  list-style: none;
  padding: 0;
}

.mobile-side-nav ul li {
  text-align: left;
  padding: 15px 25px;
}

.mobile-side-nav ul li a {
  color: #FFF;
  text-decoration: none;
  font-size: 16px;
  display: block;
  transition: 0.2s;
}

.mobile-side-nav ul li a:hover {
  color: #EB7E1D;
}

/* Mobil menü arka plan overlay */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 998;
}

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

.mobile-side-nav.active {
  right: 0;
}

/* 🔹 Mobilde sat butonu */
@media (max-width: 991px) {
  .mobile-menu-toggle {
    display: inline-block;
  }

  #navigation {
    display: none;
  }

  .mobile-side-nav ul li.sell-btn a {
    background-color: #EB7E1D;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    display: inline-block;
    text-align: center;
    margin: 10px 0;
    border: 2px solid #EB7E1D;
  }

  .mobile-side-nav ul li.sell-btn a:hover {
    background-color: #d56d12;
  }

  .mobile-side-nav ul li.sell-btn a::after {
    display: none !important;
  }
}

/* Responsive düzenler */
@media only screen and (max-width: 768px) {
  #top-header .header-links {
    text-align: center;
    display: block;
    margin-bottom: 5px;
  }

  #top-header .header-links.pull-left,
  #top-header .header-links.pull-right {
    float: none;
  }
}

/*=========================================================
	Sticky Header
===========================================================*/

#header, #navigation {
  position: sticky;
  top: 0;
  z-index: 1000;
}

#header {
  z-index: 1001;
}

/* Kaydırma gölgesi */
.sticky-active {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  transition: box-shadow 0.3s ease;
}

/*=========================================================
	04 -> Slider
===========================================================*/

/* ====== SLIDER GENEL ====== */
.slider {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 21 / 5.8; /* 🔥 Daha ince, üst-alt daraldı */
  overflow: hidden;
  margin: 20px auto;
  background-color: #000;
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
  height: 100%;
}

.slides picture,
.slides img {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  object-fit: contain; /* Görsel tam görünür */
  object-position: center;
  background-color: #000;
}

/* Butonlar */
.slider-nav {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  background: rgba(0, 0, 0, 0.3);
  padding: 8px 16px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
}

.slider-nav button {
  border: none;
  background: #fff;
  color: #333;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.slider-nav button:hover {
  background: #ddd;
}

/* 🔹 Responsive ayarlar – oran hep yatay ve inceltilmiş */
@media (max-width: 1200px) {
  .slider { aspect-ratio: 21 / 5.8; }
}

@media (max-width: 768px) {
  .slider { aspect-ratio: 21 / 5.8; }
}

@media (max-width: 480px) {
  .slider {
    aspect-ratio: 21 / 5.8;
    margin: 15px auto;
  }

  .slider-nav {
    bottom: 10px;
    gap: 8px;
    padding: 6px 10px;
  }

  .slider-nav button {
    width: 30px;
    height: 30px;
    font-size: 15px;
  }
}

@media (max-width: 360px) {
  .slider {
    aspect-ratio: 21 / 5.8;
    margin: 10px auto;
  }

  .slider-nav {
    bottom: 8px;
    gap: 6px;
    padding: 4px 8px;
  }

  .slider-nav button {
    width: 26px;
    height: 26px;
    font-size: 13px;
  }
}


/*=========================================================
	05 -> HOT DEAL
===========================================================*/

#hot-deal.section {
  padding: 60px 0px;
  margin: 30px 0px;
  background-color: #E4E7ED;
  background-image: url('../img/hotdeal.png');
  background-position: center;
  background-repeat: no-repeat;
}

.hot-deal {
  text-align: center;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 30px; /* Aralarındaki boşluk */
}

.countdown div {
    text-align: center;
}

.countdown div span {
    display: block;
    font-size: 30px; /* Rakam boyutu */
    font-weight: bold;
    color: #EB7E1D; /* Rakam rengi */
}

.countdown div div {
    font-size: 12px; /* Etiket boyutu */
    color: #333; /* Etiket rengi */
    margin-top: -5px; /* Rakam ve etiket arasındaki boşluk */
}

.hot-deal .hot-deal-countdown>li>div span {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  color: #FFF;
}

.hot-deal p {
  text-transform: uppercase;
  font-size: 24px;
}

.hot-deal .cta-btn {
  margin-top: 15px;
}

/*=========================================================
	06 -> PRODUCT
===========================================================*/

/*----------------------------*\
	product
\*----------------------------*/

.product {
  position: relative;
  margin: 15px 0px;
  -webkit-box-shadow: 0px 0px 0px 0px #E4E7ED, 0px 0px 0px 1px #E4E7ED;
  box-shadow: 0px 0px 0px 0px #E4E7ED, 0px 0px 0px 1px #E4E7ED;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.product:hover {
  -webkit-box-shadow: 0px 0px 6px 0px #E4E7ED, 0px 0px 0px 2px #EB7E1D;
  box-shadow: 0px 0px 6px 0px #E4E7ED, 0px 0px 0px 2px #EB7E1D;
}

.product .product-img {
  position: relative;
}

.product .product-img>img {
  width: 100%;
}

.product .product-img .product-label {
  position: absolute;
  top: 15px;
  right: 15px;
}

.product .product-img .product-label>span {
  border: 2px solid;
  padding: 2px 10px;
  font-size: 12px;
}

.product .product-img .product-label>span.sale {
  background-color: #FFF;
  border-color: #EB7E1D;
  color: #EB7E1D;
}

.product .product-img .product-label>span.new {
  background-color: #EB7E1D;
  border-color: #EB7E1D;
  color: #FFF;
}

.product .product-body {
  position: relative;
  padding: 15px;
  background-color: #FFF;
  text-align: center;
  z-index: 20;
}

.product .product-body .product-category {
  text-transform: uppercase;
  font-size: 12px;
  color: #8D99AE;
}

.product .product-body .product-name {
  text-transform: uppercase;
  font-size: 14px;
}

.product .product-body .product-name>a {
  font-weight: 700;
}

.product .product-body .product-name>a:hover, .product .product-body .product-name>a:focus {
  color: #EB7E1D;
}

.product .product-body .product-price {
  color: #EB7E1D;
  font-size: 18px;
}

.product .product-body .product-price .product-old-price {
  font-size: 70%;
  font-weight: 400;
  color: #8D99AE;
}

.product .product-body .product-btns>button {
  position: relative;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: transparent;
  border: none;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.product .product-body .product-btns>button:hover {
  background-color: #E4E7ED;
  color: #EB7E1D;
  border-radius: 50%;
}

.product .product-body .product-btns>button .tooltipp {
  position: absolute;
  bottom: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, -15px);
  -ms-transform: translate(-50%, -15px);
  transform: translate(-50%, -15px);
  width: 150px;
  padding: 10px;
  font-size: 12px;
  line-height: 10px;
  background: #1e1f29;
  color: #FFF;
  text-transform: uppercase;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.product .product-body .product-btns>button:hover .tooltipp {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(-50%, -5px);
  -ms-transform: translate(-50%, -5px);
  transform: translate(-50%, -5px);
}

.product .add-to-cart {
  position: absolute;
  left: 1px;
  right: 1px;
  bottom: 1px;
  padding: 15px;
  background: #1e1f29;
  text-align: center;
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  z-index: 2;
}

.product:hover .add-to-cart {
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
}

.product .add-to-cart .add-to-cart-btn {
  position: relative;
  border: 2px solid transparent;
  height: 40px;
  padding: 0 30px;
  background-color: #ef233c;
  color: #FFF;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 40px;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.product .add-to-cart .add-to-cart-btn>i {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  line-height: 38px;
  color: #EB7E1D;
  opacity: 0;
  visibility: hidden;
}

.product .add-to-cart .add-to-cart-btn:hover {
  background-color: #FFF;
  color: #EB7E1D;
  border-color: #EB7E1D;
  padding: 0px 30px 0px 50px;
}

.product .add-to-cart .add-to-cart-btn:hover>i {
  opacity: 1;
  visibility: visible;
}

/*----------------------------*\
	Widget product
\*----------------------------*/

.product-widget {
  position: relative;
}

.product-widget+.product-widget {
  margin: 30px 0px;
}

.product-widget .product-img {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 60px;
}

.product-widget .product-img>img {
  width: 100%;
}

.product-widget .product-body {
  padding-left: 75px;
  min-height: 60px;
}

.product-widget .product-body .product-category {
  text-transform: uppercase;
  font-size: 10px;
  color: #8D99AE;
}

.product-widget .product-body .product-name {
  text-transform: uppercase;
  font-size: 12px;
}

.product-widget .product-body .product-name>a {
  font-weight: 700;
}

.product-widget .product-body .product-name>a:hover, .product-widget .product-body .product-name>a:focus {
  color: #EB7E1D;
}

.product-widget .product-body .product-price {
  font-size: 14px;
  color: #EB7E1D;
}

.product-widget .product-body .product-price .product-old-price {
  font-size: 70%;
  font-weight: 400;
  color: #8D99AE;
}

.product-widget .product-body .product-price .qty {
  font-weight: 400;
  margin-right: 10px;
}

.product-widget .delete {
  position: absolute;
  top: 0;
  left: 0;
  height: 14px;
  width: 14px;
  text-align: center;
  font-size: 10px;
  padding: 0;
  background: #1e1f29;
  border: none;
  color: #FFF;
}

/*----------------------------*\
	Products slick
\*----------------------------*/

.products-slick .slick-list {
  padding-bottom: 60px;
  margin-bottom: -60px;
  z-index: 2;
}

.products-slick .product.slick-slide {
  margin: 15px;
}

.products-tabs>.tab-pane {
  display: block;
  height: 0;
  opacity: 0;
  visibility: hidden;
  overflow-y: hidden;
  padding-bottom: 60px;
  margin-bottom: -60px;
}

.products-tabs>.tab-pane.active {
  opacity: 1;
  visibility: visible;
  height: auto;
}

.products-slick-nav {
  position: absolute;
  right: 15px;
  z-index: 10;
}

.products-slick-nav .slick-prev, .products-slick-nav .slick-next {
  position: static;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  width: 20px;
  height: 20px;
  display: inline-block !important;
  margin: 0px 2px;
}

.products-slick-nav .slick-prev:before, .products-slick-nav .slick-next:before {
  font-size: 14px;
}

/*=========================================================
	07 -> PRODUCTS PAGE
===========================================================*/

/*----------------------------*\
	Aside
\*----------------------------*/

.aside+.aside {
  margin-top: 30px;
}

.aside>.aside-title {
  text-transform: uppercase;
  font-size: 18px;
  margin: 15px 0px 30px;
}

/*-- checkbox Filter --*/

.checkbox-filter>div+div {
  margin-top: 10px;
}

.checkbox-filter .input-radio label, .checkbox-filter .input-checkbox label {
  font-size: 12px;
}

.checkbox-filter .input-radio label small, .checkbox-filter .input-checkbox label small {
  color: #8D99AE;
}

/*-- Price Filter --*/

#price-slider {
  margin-bottom: 15px;
}

.noUi-target {
  background-color: #FFF;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid #E4E7ED;
  border-radius: 0px;
}

.noUi-connect {
  background-color: #EB7E1D;
}

.noUi-horizontal {
  height: 6px;
}

.noUi-horizontal .noUi-handle {
  width: 12px;
  height: 12px;
  left: -6px;
  top: -4px;
  border: none;
  background: #EB7E1D;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 50%;
}

.noUi-handle:before, .noUi-handle:after {
  display: none;
}

.price-filter .input-number {
  display: inline-block;
  width: calc(50% - 7px);
}

/*----------------------------*\
	Store
\*----------------------------*/

.store-filter {
  margin-bottom: 15px;
  margin-top: 15px;
}

/*-- Store Sort --*/

.store-sort {
  display: inline-block;
}

.store-sort label {
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  margin-right: 15px;
}

/*-- Store Grid --*/

.store-grid {
  float: right;
}

.store-grid li {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: #FFF;
  border: 1px solid #E4E7ED;
  text-align: center;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.store-grid li+li {
  margin-left: 5px;
}

.store-grid li:hover {
  background-color: #E4E7ED;
  color: #EB7E1D;
}

.store-grid li.active {
  background-color: #EB7E1D;
  border-color: #EB7E1D;
  color: #FFF;
  cursor: default;
}

.store-grid li a {
  display: block;
}

/*-- Store Pagination --*/

.store-pagination {
  float: right;
}

.store-pagination li {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: #FFF;
  border: 1px solid #E4E7ED;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.store-pagination li+li {
  margin-left: 5px;
}

.store-pagination li:hover {
  background-color: #E4E7ED;
  color: #EB7E1D;
}

.store-pagination li.active {
  background-color: #EB7E1D;
  border-color: #EB7E1D;
  color: #FFF;
  font-weight: 500;
  cursor: default;
}

.store-pagination li a {
  display: block;
}

.store-qty {
  margin-right: 30px;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 12px;
}

/*=========================================================
	08 -> PRODUCT DETAILS PAGE
===========================================================*/

/*----------------------------*\
	Product view
\*----------------------------*/

#product-main-img .slick-prev {
  -webkit-transform: translateX(-15px);
  -ms-transform: translateX(-15px);
  transform: translateX(-15px);
  left: 15px;
}

#product-main-img .slick-next {
  -webkit-transform: translateX(15px);
  -ms-transform: translateX(15px);
  transform: translateX(15px);
  right: 15px;
}

#product-main-img .slick-prev, #product-main-img .slick-next {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

#product-main-img:hover .slick-prev, #product-main-img:hover .slick-next {
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
  opacity: 1;
  visibility: visible;
}

#product-main-img .zoomImg {
  background-color: #FFF;
}

#product-imgs .product-preview {
  margin: 0px 5px;
  border: 1px solid #E4E7ED;
}

#product-imgs .product-preview.slick-current {
  border-color: #EB7E1D;
}

#product-imgs .slick-prev {
  top: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

#product-imgs .slick-next {
  top: calc(100% - 20px);
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

#product-imgs .slick-prev:before {
  content: "\f106";
}

#product-imgs .slick-next:before {
  content: "\f107";
}

.product-preview img {
  width: 100%;
}

/*----------------------------*\
	Product details
\*----------------------------*/

.product-details .product-name {
  text-transform: uppercase;
  font-size: 18px;
}

.product-details .product-rating {
  display: inline-block;
  margin-right: 15px;
}

.product-details .product-rating>i {
  color: #E4E7ED;
}

.product-details .product-rating>i.fa-star {
  color: #EB7E1D;
}

.product-details .review-link {
  font-size: 12px;
}

.product-details .product-price {
  display: inline-block;
  font-size: 24px;
  margin-top: 10px;
  margin-bottom: 15px;
  color: #EB7E1D;
}

.product-details .product-price .product-old-price {
  font-size: 70%;
  font-weight: 400;
  color: #8D99AE;
}

.product-details .product-available {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
  margin-left: 30px;
  color: #EB7E1D;
}

.product-details .product-options {
  margin-top: 30px;
  margin-bottom: 30px;
}

.product-details .product-options label {
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  margin-right: 15px;
  margin-bottom: 0px;
}

.product-details .product-options .input-select {
  width: 90px;
}

.product-details .add-to-cart {
  margin-bottom: 30px;
}

.product-details .add-to-cart .add-to-cart-btn {
  position: relative;
  border: 2px solid transparent;
  height: 40px;
  padding: 0 30px;
  background-color: #ef233c;
  color: #FFF;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 40px;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.product-details .add-to-cart .add-to-cart-btn>i {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  line-height: 38px;
  color: #EB7E1D;
  opacity: 0;
  visibility: hidden;
}

.product-details .add-to-cart .add-to-cart-btn:hover {
  background-color: #FFF;
  color: #EB7E1D;
  border-color: #EB7E1D;
  padding: 0px 30px 0px 50px;
}

.product-details .add-to-cart .add-to-cart-btn:hover>i {
  opacity: 1;
  visibility: visible;
}

.product-details .add-to-cart .qty-label {
  display: inline-block;
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  margin-right: 15px;
  margin-bottom: 0px;
}

.product-details .add-to-cart .qty-label .input-number {
  width: 90px;
  display: inline-block;
}

.product-details .product-btns li {
  display: inline-block;
  text-transform: uppercase;
  font-size: 12px;
}

.product-details .product-btns li+li {
  margin-left: 15px;
}

.product-details .product-links {
  margin-top: 15px;
}

.product-details .product-links li {
  display: inline-block;
  text-transform: uppercase;
  font-size: 12px;
}

.product-details .product-links li+li {
  margin-left: 10px;
}

/*----------------------------*\
	 Product tab
\*----------------------------*/

#product-tab {
  margin-top: 60px;
}

#product-tab .tab-nav {
  position: relative;
  text-align: center;
  padding: 15px 0px;
  margin-bottom: 30px;
}

#product-tab .tab-nav:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background-color: #E4E7ED;
  z-index: -1;
}

#product-tab .tab-nav li {
  display: inline-block;
  background: #FFF;
  padding: 0px 15px;
}

#product-tab .tab-nav li+li {
  margin-left: 15px;
}

#product-tab .tab-nav li a {
  display: block;
  font-weight: 700;
  color: #8D99AE;
}

#product-tab .tab-nav li.active a {
  color: #EB7E1D;
}

#product-tab .tab-nav li a:after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background-color: #EB7E1D;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

#product-tab .tab-nav li a:hover:after, #product-tab .tab-nav li a:focus:after, #product-tab .tab-nav li.active a:after {
  width: 100%;
}

/*-- Rating --*/

.rating-avg {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.rating-avg .rating-stars {
  margin-left: 10px;
}

.rating-avg .rating-stars, .rating .rating-stars {
  display: inline-block;
}

.rating-avg .rating-stars>i, .rating .rating-stars>i {
  color: #E4E7ED;
}

.rating-avg .rating-stars>i.fa-star, .rating .rating-stars>i.fa-star {
  color: #EB7E1D;
}

.rating li {
  margin: 5px 0px;
}

.rating .rating-progress {
  position: relative;
  display: inline-block;
  height: 9px;
  background-color: #E4E7ED;
  width: 120px;
  margin: 0px 10px;
  border-radius: 5px;
}

.rating .rating-progress>div {
  background-color: #EB7E1D;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  border-radius: 5px;
}

.rating .sum {
  display: inline-block;
  font-size: 12px;
  color: #8D99AE;
}

/*-- Reviews --*/

.reviews li {
  position: relative;
  padding-left: 145px;
  margin-bottom: 30px;
}

.reviews .review-heading {
  position: absolute;
  width: 130px;
  left: 0;
  top: 0;
  height: 70px;
}

.reviews .review-body {
  min-height: 70px;
}

.reviews .review-heading .name {
  margin-bottom: 5px;
  margin-top: 0px;
}

.reviews .review-heading .date {
  color: #8D99AE;
  font-size: 10px;
  margin: 0;
}

.reviews .review-heading .review-rating {
  margin-top: 5px;
}

.reviews .review-heading .review-rating>i {
  color: #E4E7ED;
}

.reviews .review-heading .review-rating>i.fa-star {
  color: #EB7E1D;
}

.reviews-pagination {
  text-align: center;
}

.reviews-pagination li {
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  background-color: #FFF;
  border: 1px solid #E4E7ED;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.reviews-pagination li:hover {
  background-color: #E4E7ED;
  color: #EB7E1D;
}

.reviews-pagination li.active {
  background-color: #EB7E1D;
  border-color: #EB7E1D;
  color: #FFF;
  cursor: default;
}

.reviews-pagination li a {
  display: block;
}

/*-- Review Form --*/

.review-form .input {
  margin-bottom: 15px;
}

.review-form .input-rating {
  margin-bottom: 15px;
}

.review-form .input-rating .stars {
  display: inline-block;
  vertical-align: top;
}

.review-form .input-rating .stars input[type="radio"] {
  display: none;
}

.review-form .input-rating .stars>label {
  float: right;
  cursor: pointer;
  padding: 0px 3px;
  margin: 0px;
}

.review-form .input-rating .stars>label:before {
  content: "\f006";
  font-family: FontAwesome;
  color: #E4E7ED;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.review-form .input-rating .stars>label:hover:before, .review-form .input-rating .stars>label:hover~label:before {
  color: #EB7E1D;
}

.review-form .input-rating .stars>input:checked label:before, .review-form .input-rating .stars>input:checked~label:before {
  content: "\f005";
  color: #EB7E1D;
}

/*=========================================================
	09 -> CHECKOUT PAGE
===========================================================*/

.billing-details {
  margin-bottom: 30px;
}

.shiping-details {
  margin-bottom: 30px;
}

.order-details {
  position: relative;
  padding: 0px 30px 30px;
  border-right: 1px solid #E4E7ED;
  border-left: 1px solid #E4E7ED;
  border-bottom: 1px solid #E4E7ED;
}

.order-details:before {
  content: "";
  position: absolute;
  left: -1px;
  right: -1px;
  top: -15px;
  height: 30px;
  border-top: 1px solid #E4E7ED;
  border-left: 1px solid #E4E7ED;
  border-right: 1px solid #E4E7ED;
}

.order-summary {
  margin: 15px 0px;
}

.order-summary .order-col {
  display: table;
  width: 100%;
}

.order-summary .order-col:after {
  content: "";
  display: block;
  clear: both;
}

.order-summary .order-col>div {
  display: table-cell;
  padding: 10px 0px;
}

.order-summary .order-col>div:first-child {
  width: calc(100% - 150px);
}

.order-summary .order-col>div:last-child {
  width: 150px;
  text-align: right;
}

.order-summary .order-col .order-total {
  font-size: 24px;
  color: #EB7E1D;
}

.order-details .payment-method {
  margin: 30px 0px;
}

.order-details .order-submit {
  display: block;
  margin-top: 30px;
}

/*=========================================================
	10 -> NEWSLETTER
===========================================================*/

#newsletter.section {
  border-top: 2px solid #E4E7ED;
  border-bottom: 3px solid #EB7E1D;
  margin-top: 30px;
}

.newsletter {
  text-align: center;
}

.newsletter p {
  font-size: 24px;
}

.newsletter form {
  position: relative;
  max-width: 520px;
  margin: 30px auto;
}

.newsletter form:after {
  content: "\f003";
  font-family: FontAwesome;
  position: absolute;
  font-size: 160px;
  color: #E4E7ED;
  top: 15px;
  -webkit-transform: translateY(-50%) rotate(15deg);
  -ms-transform: translateY(-50%) rotate(15deg);
  transform: translateY(-50%) rotate(15deg);
  z-index: -1;
  left: -90px;
}

.newsletter form .input {
  width: calc(100% - 160px);
  margin-right: -4px;
  border-radius: 40px 0px 0px 40px;
}

.newsletter form .newsletter-btn {
  width: 160px;
  height: 40px;
  font-weight: 700;
  background: #EB7E1D;
  color: #FFF;
  border: none;
  border-radius: 0px 40px 40px 0px;
}

.newsletter .newsletter-follow {
  text-align: center;
}

.newsletter .newsletter-follow li {
  display: inline-block;
  margin-right: 5px;
}

.newsletter .newsletter-follow li:last-child {
  margin-right: 0px;
}

.newsletter .newsletter-follow li a {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border: 1px solid #E4E7ED;
  background-color: #FFF;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.newsletter .newsletter-follow li a:hover, .newsletter .newsletter-follow li a:focus {
  background-color: #E4E7ED;
  color: #EB7E1D;
}

/*=========================================================
	11 -> FOOTER
===========================================================*/

#footer {
  background: #15161D;
  color: #B9BABC;
}

#bottom-footer {
  background: #1E1F29;
}

.footer {
  margin: 30px 0px;
}

.footer .footer-title {
  color: #FFF;
  text-transform: uppercase;
  font-size: 18px;
  margin: 0px 0px 30px;
}

.footer-links li+li {
  margin-top: 15px;
}

.footer-links li a {
  color: #B9BABC;
}

.footer-links li i {
  margin-right: 15px;
  color: #EB7E1D;
  width: 14px;
  text-align: center;
}

.footer-links li a:hover {
  color: #EB7E1D;
}

.copyright {
  margin-top: 30px;
  display: block;
  font-size: 12px;
}

.footer-payments li {
  display: inline-block;
  margin-right: 5px;
}

.footer-payments li a {
  color: #15161D;
  font-size: 36px;
  display: block;
}

/*=========================================================
	12 -> SLICK STYLE
===========================================================*/

/*----------------------------*\
	Arrows
\*----------------------------*/

.slick-prev, .slick-next {
  width: 40px;
  height: 40px;
  border: 1px solid #E4E7ED;
  background-color: #FFF;
  border-radius: 50%;
  z-index: 22;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {
  background-color: #EB7E1D;
  border-color: #EB7E1D;
}

.slick-prev:before, .slick-next:before {
  font-family: FontAwesome;
  color: #2B2D42;
}

.slick-prev:before {
  content: "\f104";
}

.slick-next:before {
  content: "\f105";
}

.slick-prev:hover:before, .slick-prev:focus:before, .slick-next:hover:before, .slick-next:focus:before {
  color: #FFF;
}

.slick-prev {
  left: -20px;
}

.slick-next {
  right: -20px;
}

/*----------------------------*\
	Dots
\*----------------------------*/

.slick-dots li, .slick-dots li button, .slick-dots li button:before {
  width: 10px;
  height: 10px;
}

.slick-dots li button:before {
  content: "";
  opacity: 1;
  background: #E4E7ED;
  border-radius: 50%;
}

.slick-dots li.slick-active button:before {
  background-color: #EB7E1D;
}

.custom-dots .slick-dots {
  position: static;
  margin: 15px 0px;
}

/*=========================================================
	13 -> RESPONSIVE
===========================================================*/

@media only screen and (max-width: 1201px) {}

@media only screen and (max-width: 991px) {
  #top-header .header-links.pull-left {
    float: none !important;
  }
  #top-header .header-links.pull-right {
    float: none !important;
    margin-top: 5px;
  }
  .header-logo {
    float: none;
    text-align: center;
  }
  .header-logo .logo {
    display: inline-block;
  }
  #product-imgs {
    margin-bottom: 60px;
    margin-top: 15px;
  }
  #rating {
    text-align: center;
  }
  #reviews {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .section-title .section-nav {
    float: none;
    margin-top: 10px;
  }
  .section-tab-nav li {
    margin-top: 10px;
  }
}

@media only screen and (max-width: 480px) {
  [class*='col-xs'] {
    width: 100%;
  }
  .store-grid {
    float: none;
    margin-top: 10px;
  }
  .store-pagination {
    float: none;
    margin-top: 10px;
  }
}

.rating-tag {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	font-weight: 700;
	padding: 6px 12px;
	border-radius: 25px;
	margin-top: 10px;
	text-transform: uppercase;
	border: 1px solid transparent;
	box-shadow: 0 2px 6px rgba(0,0,0,0.08);
	letter-spacing: .4px;
}

/* 5 ⭐ Sıfır */
.product-rating[data-rating="5"] {
	background: rgba(46,204,113,.15);
	color: #2ecc71;
	border-color: #2ecc71;
}

/* 4 ⭐ Mükemmel */
.product-rating[data-rating="4"] {
	background: rgba(52,152,219,.15);
	color: #3498db;
	border-color: #3498db;
}

/* 3 ⭐ Temiz */
.product-rating[data-rating="3"] {
	background: rgba(241,196,15,.18);
	color: #f1c40f;
	border-color: #f1c40f;
}

/* 2 ⚠ Kusurlu */
.product-rating[data-rating="2"] {
	background: rgba(230,126,34,.18);
	color: #e67e22;
	border-color: #e67e22;
}

/* 1 ❌ Arızalı */
.product-rating[data-rating="1"] {
	background: rgba(231,76,60,.18);
	color: #e74c3c;
	border-color: #e74c3c;
}

/* Hover efekti */
.rating-tag:hover {
	transform: scale(1.07);
	transition: .2s ease;
	filter: brightness(1.15);
}

.products {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin: 40px auto;
  max-width: 1200px;
}

/* Kategori kutusu */
.category {
  background: #fff;
  border: 1px solid #e3e3e3;
  border-radius: 12px;
  padding: 22px;
  width: 350px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Başlık ve alt yazı */
.category h2 {
  color: #000; /* siyah başlık */
  font-size: 22px;
  margin-bottom: 5px;
}

.category p {
  font-size: 13px; /* küçültüldü */
  color: #555;
  margin-bottom: 15px;
}

/* Görsel */
.category img {
  display: block;
  width: auto;
  height: 200px; /* eşit yükseklik */
  max-width: 100%;
  margin: 0 auto 18px auto;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
}


/* Tablet görünümde biraz küçültelim */
@media (max-width: 992px) {
  .category img {
    height: 160px;
  }
}

/* Mobilde orantılı küçülme */
@media (max-width: 768px) {
  .category img {
    height: 130px;
  }
}

/* Sadece Mac kutusundaki görsel biraz küçülsün */
.category:nth-child(1) img {
  height: 190px !important; /* 200 → 185 */
  margin-bottom: 20px; /* hizayı korumak için az fark */
}

/* Sadece iPad kutusundaki görsel biraz büyüsün */
.category:nth-child(2) img {
  height: 210px !important; /* 200 → 215 */
  margin-bottom: 15px; /* hizayı korumak için biraz azaltıldı */
}

/* Sadece iPhone kutusundaki görsel */
.category:nth-child(3) img {
  height: 212px !important;
  margin-bottom: 18px;
}

/* Butonlar alanı */
.category .buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: auto;
}

/* Kategori butonları */
.category button {
  border: 1px solid #e3e3e3;
  background: #fff;
  padding: 7px;
  border-radius: 8px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  height: 36px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.category button:hover {
  background: #ff7b00; /* turuncu */
  color: #fff;
  border-color: #ff7b00;
}

/* --- Aksesuarlar bölümü --- */
.accessories {
  background: #f8f9fb;
  padding: 40px 0;
  text-align: center;
}

.accessories h2 {
  color: #000;
  margin-bottom: 25px;
  font-size: 24px; /* küçültüldü */
}

.accessory-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.accessory-grid .item {
  background: #fff;
  border: 1px solid #e3e3e3;
  border-radius: 12px;
  padding: 18px;
  width: 160px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 210px;
}

.accessory-grid img {
  width: 48px;
  margin-bottom: 10px;
}

.accessory-grid p {
  font-weight: 500;
  font-size: 13px; /* küçültüldü */
  margin-bottom: 10px;
  text-align: center;
}

.accessory-grid button {
  background: #fff;
  border: 1px solid #e3e3e3;
  border-radius: 8px;
  padding: 7px 10px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.accessory-grid button:hover {
  background: #ff7b00; /* turuncu */
  color: #fff;
  border-color: #ff7b00;
}

.accessory-icon {
  font-size: 42px;
  color: #000; /* siyah */
  margin-bottom: 12px;
}

/* ===== İnce Üst Banner ===== */
#top-banner {
  position: relative;
  width: 100%;
  height: 70px; /* ince görünüm */
  overflow: hidden;
  background: #f8f9fb;
  display: flex;
  align-items: center;
  justify-content: center;
}

#top-banner img {
  width: 100%;
  height: 70px;
  object-fit: cover;
}

#top-banner .banner-slide {
  position: absolute;
  width: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
}

#top-banner .banner-slide.active {
  opacity: 1;
  z-index: 2;
}

/* --- Slider ok butonları --- */
#top-banner button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.3);
  color: #333;
  border: none;
  padding: 6px 10px;
  cursor: pointer;
  border-radius: 50%;
  font-size: 16px;
  line-height: 1;
  transition: all 0.25s ease;
  z-index: 3;
  backdrop-filter: blur(4px);
}

#top-banner button:hover {
  background: rgba(255, 255, 255, 0.7);
  color: #000;
}

#top-banner .banner-prev {
  left: 12px;
}

#top-banner .banner-next {
  right: 12px;
}

/* Mobil görünümde biraz küçültelim */
@media (max-width: 768px) {
  #top-banner button {
    padding: 4px 8px;
    font-size: 14px;
  }
}

  #top-banner img {
    height: 50px;
  }

  #top-banner button {
    padding: 4px 8px;
    font-size: 14px;
  }
}



/* ==== ADDED & OPTIMIZED STYLES ==== */

/* Top Banner Styles */
#top-banner {
  position: relative;
  width: 100%;
  height: 70px;
  overflow: hidden;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

#top-banner img {
  width: 100%;
  height: 70px;
  object-fit: cover;
  opacity: 0.9;
  transition: opacity 0.8s ease;
}

#top-banner .banner-slide {
  position: absolute;
  width: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
}

#top-banner .banner-slide.active {
  opacity: 1;
  z-index: 2;
}

#top-banner button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.25);
  color: #222;
  border: none;
  padding: 6px 9px;
  cursor: pointer;
  border-radius: 50%;
  font-size: 15px;
  transition: all 0.25s ease;
  z-index: 3;
  backdrop-filter: blur(4px);
}

#top-banner button:hover {
  background: rgba(255,255,255,0.7);
  color: #000;
}

#top-banner .banner-prev { left: 12px; }
#top-banner .banner-next { right: 12px; }

/* Rating Tag */
.rating-tag {
  display: inline-block;
  margin-top: 5px;
  font-size: 13px;
  padding: 4px 8px;
  border-radius: 8px;
  background: #f1f1f1;
  color: #333;
}

/* Neon Marquee */
.neon-marquee {
  width: 100%;
  overflow: hidden;
  background: #000;
  padding: 10px 0;
  border-top: 2px solid #ff8800;
  border-bottom: 2px solid #ff8800;
}
.marquee-track {
  display: inline-flex;
  white-space: nowrap;
  animation: marquee var(--marquee-duration, 8s) linear infinite;
}
.marquee-item {
  margin-right: 80px;
  font-size: 18px;
  font-weight: 700;
  color: #ff8800;
  text-shadow: 0 0 6px #ff8800, 0 0 12px #ff8800;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-1 * var(--marquee-width, 100%))); }
}

.product {
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}
/* --- Hamburger Butonu --- */
.mobile-menu-toggle {
    display: none;
    width: 35px;
    height: 26px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3001;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #fff;
    border-radius: 3px;
    transition: all 0.4s ease;
}


/* X dönüşümü */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 50%;
    position: absolute;
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 50%;
    position: absolute;
}

/* --- Sağdan Açılan Menü --- */
.mobile-side-nav {
    position: fixed;
    top: 0;
    right: -260px;
    width: 260px;
    height: 100vh;
    background-color: #111;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    padding-left: 30px;
    transition: right 0.4s ease;
    z-index: 3000;
}

.mobile-side-nav.active {
    right: 0;
}

.mobile-side-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-side-nav li {
    margin: 18px 0;
}

.mobile-side-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.3s;
}

.mobile-side-nav a:hover {
    color: #ff8800;
}

/* --- Sadece mobilde göster --- */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
}

/* --- Arka Plan Blur ve Karartma Efekti --- */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 2500;
}

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

    /* Neon sürekli kayan yazı */
    .neon-marquee {
        position: relative;
        width: 100%;
        min-width: 320px;
        overflow: hidden;
        background: #000;
        padding: 10px 0;
        border-top: 2px solid #ff8800;
        border-bottom: 2px solid #ff8800;
        box-sizing: border-box;
    }
    .marquee-track {
        display: inline-flex;
        align-items: center;
        white-space: nowrap;
        will-change: transform;
        animation: marquee var(--marquee-duration, 8s) linear infinite;
    }
    .marquee-item {
        display: inline-block;
        margin-right: 80px;
        font-size: 18px;
        font-weight: 700;
        color: #ff8800;
        text-shadow: 0 0 6px #ff8800, 0 0 12px #ff8800, 0 0 22px #ff8800;
        letter-spacing: 0.4px;
    }
    @keyframes marquee {
        from { transform: translateX(0); }
        to { transform: translateX(calc(-1 * var(--marquee-width, 100%))); }
    }
    @media (prefers-reduced-motion: reduce) {
        .marquee-track { animation: none; transform: none; }
    }
	
	/* Modal genel stil */
#modalCta .modal-content {
  border-radius: 20px !important;
  padding: 30px !important;
  background: #fff;
  border: none;
}

/* Form grid yapısı */
.used-product-row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 15px;
}

/* Form grup */
.used-product-group {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.used-product-group.col-md-6 { width: calc(50% - 15px); }
.used-product-group.col-md-4 { width: calc(33.33% - 15px); }

/* Input & Select */
.used-product-group input,
.used-product-group select,
.used-product-group textarea {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #ccc;
  margin-top: 5px;
  font-size: 14px;
}

/* Range bar */
#condition {
  width: 100%;
}

/* Submit button */
.used-product-btn {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  background: #ff6600;
  border: none;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  margin-top: 10px;
  transition: .2s;
}

.used-product-btn:hover {
  background: #e05500;
}

/* Close button */
#modalCta .close {
  font-size: 30px;
  opacity: .6;
}

#modalCta .close:hover {
  opacity: 1;
}

/* Mobil uyum */
@media(max-width: 768px) {
  .used-product-group.col-md-6, 
  .used-product-group.col-md-4 {
    width: 100%;
  }
}
