:root {
  --mobile-swipe-width: calc(90vw - 15px);
  --grid-width: 2380px;
  --grid-width-row: 2480px;
}
/* === HB Header Grid === */
.hb-header {
  position: sticky;
  top: 0;
  z-index: 1020;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  /* sol - logo - sağ */
  align-items: center;
  column-gap: 16px;
  padding: 10px 16px;
  background: #fff;
  backdrop-filter: saturate(160%) blur(6px);
}

/* Sol menü her zaman sola yaslı */
.hb-left {
  justify-self: start;
}

.hb-left .menu-list {
  display: flex;
  gap: 20px;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hb-left .menu-list>li>a {
  text-decoration: none;
  padding: 8px 4px;
  border-radius: 8px;
  color: #1f1f1f;
}

/* Orta logo gerçek ortada kalır */
.hb-center {
  justify-self: center;
}

.hb-logo img {
  height: 80px;
  width: auto;
  display: block;
  transition: transform .18s ease;
}

/* Sağ ikonlar sağa yaslı */
.hb-right {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 16px;
}

/* İkon görünümü */
.hb-icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1f1f1f;
  text-decoration: none;
  border-radius: 50%;
}

.hb-icon:hover {
  opacity: .85;
}

/* Sepet rozeti */
.hb-cart-badge {
  position: absolute;
  right: -6px;
  top: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: #1f1f1f;
  color: #fff;
  font-size: 11px;
  line-height: 18px;
  text-align: center;
  font-weight: 700;
}

/* Alt çizgi/çift satır sorunlarını kapat */
.category {
  overflow: visible;
}

.category::after {
  content: none !important;
}

/* bazı temalarda alt çizgi pseudo ile gelir */
.menu-list {
  border: 0 !important;
}

/* varsa alt border’ı kaldır */
header+hr,
.category+hr {
  display: none !important;
}

/* header altında kalan yatay çizgiyi gizle */

/* Sticky’de minik küçülme (opsiyonel) */
.hb-header.is-sticky .hb-logo img {
  transform: scale(.92);
}
.container {
  max-width: var(--grid-width);
  margin: 0 auto;
  padding: 0 70px;

}

.row {
  max-width: var(--grid-width-row);
  margin: 0 auto;
}

.slider {
  width: var(--mobile-swipe-width);
  overflow-x: scroll;
}
a {
  text-decoration: none;
}

header {
  border-bottom: 1px solid var(--secondary);
  padding: 24px 0px;
}

header .search-input {
  width: 400px;
  position: relative;
}

header .search-input ::placeholder {
  font-size: 13px;
}

header .search-input .form-control:focus {
  box-shadow: none;
  border-color: var(--black);
}

header .search-input .absolute-magnifying {
  position: absolute;
  top: 1px;
  right: 10px;
}

.logo {
  height: 90px;
}

.logo img {
  width: 100%;
  height: 100%;
  max-width: 100%;
}

.category .global-notification {
  background-color: transparent;
  padding: 14px 0;
  text-align: center;
  font-size: 12px;
  color: var(--black);
}

.category .global-notification a {
  color: var(--black);
  font-weight: 600;
}

.category .header-row {
  height: 90px;
  display: flex;
  align-items: center;
}

.category .header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.category .header-mobile {
  font-size: 24px;
  cursor: pointer;
  display: none;
}

.category .bi-x-circle {
  display: none;
}

.category .menu-list {
  display: flex;
  gap: 30px;
  align-items: center;

}

.category .menu-list .menu-list-item {
  display: flex;
  align-items: center;
  position: relative;
  justify-content: center;
}

.category .menu-list .menu-list-item:hover .menu-link::after {
  width: 60%;
}

.category .menu-list .menu-list-item:hover .menu-dropdown-wrapper {
  opacity: 1;
  visibility: visible;
}

.category .menu-list .menu-link {
  color: var(--black);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  text-wrap: nowrap;
  text-transform: uppercase;
}
.col-lg-6-5 {
  flex: 0 0 49.1666%;
  /* 6.5 / 12 */
  max-width: 49.1666%;
}
.menu-list {
  display: flex;
  justify-content: center;
  gap: 32px;
}

/* .menu-list-item:not(:last-child) { */
  /* border-right: 1px solid #D5D5D5; */
  /* padding: 0 37px; */
/* } */
.category .menu-list .menu-link:hover {
  color: #1d4389;
}

.category .menu-list .menu-link .menu-link.active::after {
  width: 100%;
}

.category .menu-list .menu-link i {
  font-size: 12px;
}

.category .menu-list .menu-link::after {
  content: "";
  width: 0;
  height: 1px;
  background-color: transparent;
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translate(-50%);
  transition: 0.2s ease width;
}

.category .menu-dropdown-content a:hover {
  color: var(--black);
}

.category .megamenu-wrapper .megamenu-single-title {
  font-size: 18px;
  font-weight: 500;
}

.category .header-right .header-right-links {
  display: flex;
  align-items: center;
  column-gap: 16px;
}

.category .header-right .bi-person {
  font-size: 23px;
}

.category .header-right .search-button {
  border: none;
  background-color: var(--black);
}

.category .header-right i {
  font-size: 18px;
  display: flex;
}

.category .header-right .header-cart {
  position: relative;
}

.category .header-right .header-cart-link .header-cart-count {
  width: 16px;
  height: 16px;
  background-color: transparent;
  color: var(--black);
  font-size: 10px;
  border-radius: 100%;
  position: absolute;
  top: 0px;
  right: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}

.category .menu-dropdown-wrapper {
  position: absolute!important;
  left: 0!important;
  top: calc(100%)!important;
  /* menünün hemen altı */
  z-index: 4000;
  /* slider’ın üstünde kalsın */
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity .15s ease, transform .15s ease, visibility 0s linear .15s;
}

.hb-left .menu-list>li {
  position: relative;
}

/* referans konteyner */
.hb-left .menu-list>li:hover .menu-dropdown-wrapper {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s;
}

.category .menu-dropdown-content {
  border-radius: 10px;
  width: auto;
  background-color: var(--white);
  display: flex;
  flex-direction: column;
  padding: 10px 0;
}

.category .menu-dropdown-content a {
  display: flex;
  padding: 4px 20px;
  font-size: 14px;
  transition: color 0.2s ease;
  color: var(--black);
  font-weight: 300;
}

.category .menu-dropdown-content a:hover {
  color: var(--danger);
}

.category .menu-dropdown-content .menu-dropdown-megamenu {
  background-color: transparent;
  border: 1px solid var(--soft-secondary);
  padding: 22px;
  display: flex;
  column-gap: 50px;
}

.category .menu-dropdown-content .megamenu-wrapper {
  position: static !important;
}

.category .menu-dropdown-content .megamenu-wrapper .menu-dropdown-wrapper {
  left: -140px;
  top: 250px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.category .menu-dropdown-content .megamenu-wrapper .megamenu-links {
  display: flex;
  column-gap: 50px;
}

.category .menu-dropdown-content .megamenu-wrapper .megamenu-products-title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}

.category .menu-dropdown-content .megamenu-wrapper .megamenu-menu-list {
  display: flex;
  flex-direction: column;
  row-gap: 2px;
}

.category .menu-dropdown-content .megamenu-wrapper .megamenu-menu-list a {
  color: var(--black) !important;
  font-size: 14px;
}

.category .menu-dropdown-content .megamenu-wrapper .megamenu-menu-list a:hover {
  color: var(--danger) !important;
}

.category .menu-dropdown-content .megamenu-wrapper .megamenu-menu-list .megamenu-single-subtitle {
  font-size: 14px;
  margin-bottom: 10px;
  font-weight: 400;
}

.category .menu-dropdown-content .megamenu-wrapper .megamenu-menu-list .megamenu-single-button {
  margin-top: 5px;
  background-color: transparent;
  color: var(--black);
  width: 100%;
}


.section-1 .section-title {
  font-size: 32px;
  font-weight: 700;
}

.section-1 img:hover {
  transform: scale(1.1);
  transition: 0.5s;
}

.section-2 .section-title {
  font-size: 32px;
  font-weight: 700;
}

.section-2 img:hover {
  transform: scale(1.1);
  transition: 0.5s;
}

.section-3 .section-title {
  font-size: 32px;
  font-weight: 300;
}

.section-4 .section-title {
  font-size: 32px;
  font-weight: 300;
}

.mega-box {
  margin-top: 60px;
  background-color: var(--danger);
  height: auto;
}

.mega-box .section-title {
  color: var(--black);
  font-size: 32px;
  font-weight: 300;
  text-align: center;
  margin: auto;
}

.mega-box h5 {
  font-weight: 600;
}

.mega-box .mini-description p {
  margin-top: 10px !important;
  width: 280px;
  text-align: center;
}

.product-item {
  border: 1px solid var(--light-secondary);
  border-radius: 5px;
  text-align: center;
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-item .product-image {
  width: 100%;
  height: 100%;
}

.product-item .product-image:hover .img2 {
  visibility: visible;
  opacity: 1;
}

.product-item img {

  width: 100%;
  transition: 0.3s ease-in-out all;
}

.product-item .img1:hover {
  visibility: hidden;
  opacity: 0;
}

.product-item .img2 {
  display: flex;
  position: absolute;
  top: 0;
  opacity: 0;
  visibility: hidden;
}

.product-item .product-title {
  font-size: 16px;
  display: inline-block;
  font-weight: 600;
  margin-top: 15px;
  color: var(--black);
}

.product-item .product-star i {
  font-size: 12px;
  color: var(--gold);
}

.product-item:hover .product-links {
  transform: translate(15px);
  opacity: 1;
  visibility: visible;
}

.product-item .product-prices {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 8px;
  padding-bottom: 15px;
}

.product-item .product-prices strong {
  color: var(--black);
  font-weight: 500;
  font-size: 20px;
}

.product-item .product-prices span {
  color: var(--black);
  font-size: 12px;
  text-decoration: line-through;
}

.product-item .product-prices .old-price {
  text-decoration: line-through;
  color: var(--danger);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
}

.product-item .product-prices .new-price {
  color: var(--black);
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
}

.product-item .product-discount {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: var(--danger);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 12px;
  position: absolute;
  top: 25px;
  right: 25px;
  border-radius: 100%;
  font-weight: 500;
}

.product-item .product-links {
  display: inline-flex;
  flex-direction: column;
  row-gap: 8px;
  position: absolute;
  top: 20px;
  left: 16px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease-out all;
  overflow: hidden;
}

.product-item .product-links button {
  background-color: var(--danger);
  display: inline-block;
  padding: 5px;
  color: var(--white);
  border-radius: 4px;
  transition: all ease 0.3s;
}

.product-item .product-links button:hover {
  opacity: 0.7;
  background-color: var(--dark-danger);
}

.product-item .product-links a {
  color: var(--white);
  background-color: var(--danger);
  display: inline-block;
  padding: 5px;
  border-radius: 4px;
  transition: all ease 0.3s;
}

.product-item .product-links a:hover {
  background-color: var(--dark-danger);
  opacity: 0.7;
}

.product-item .product-links i {
  color: var(--black);
  font-size: 14px;
  display: flex;
  pointer-events: none;
}

.product-wrapper {
  position: relative;
}

.product-wrapper .glide__arrow {
  position: absolute;
  top: 50%;
  background-color: transparent;
}

.product-wrapper .glide__arrow i {
  font-size: 40px;
}

.product-wrapper .glide__arrow--left {
  left: -40px;
}

.product-wrapper .glide__arrow--right {
  right: -40px;
}

.dropdown-menu {
  height: 140px !important;
}

.dropdown-menu::-webkit-scrollbar {
  width: 6px;
  z-index: 999;
}

.dropdown-menu::-webkit-scrollbar-track {
  background-color: var(--white);
  border-radius: 10px;
  z-index: 999;
}

.dropdown-menu::-webkit-scrollbar-thumb {
  background: var(--danger);
  z-index: 999;
  border-radius: 10px;
}

.dropdown-menu::-webkit-scrollbar-thumb:hover {
  z-index: 999;
  background: var(--dark-danger);
}



@media (max-width: 1121px) {
  .mega-box h4 {
    color: var(--black);
    font-size: 28px;
    font-weight: 700;
    width: 500px;
    text-align: center;
    margin: auto;
  }
}

@media (max-width: 553px) {
  .mega-box h4 {
    color: var(--black);
    font-size: 16px;
    font-weight: 700;
    width: 320px;
    text-align: center;
    margin: auto;
  }
}
.shopphp-payment-body .tab-content label {
  margin: 0;
  margin-left: 5px;
  font-weight: 600;
}
span.mt-2.font-weight-bold.adres-ad-soyad.font-12 {
  font-size: 16px !important;
}
.shopphp-payment-body .mt-4,
.my-4 {
  width: 496px;
  margin-top: 1.5rem !important;
  margin-right: 96px;
}
span.mb-2.font-12.adres-adres {
  font-size: 14px !important;
}
.kategori {
  background-color: var(--secondary);
  padding: 10px 30px;
  border-radius: 12px;
}

.kategori .text-title {
  font-size: 22px;
  font-weight: 600;
}

.kategori label {
  color: #333;
  font-size: 16px !important;
  font-style: normal;
  font-weight: 500;
}

.kategori ul {
  border-bottom: 1px solid var(--secondary);
  list-style: none;
}

.kategori .accordion {
  --bs-accordion-btn-focus-box-shadow: none;
  --bs-accordion-color: var(--bs-body-color);
  --bs-accordion-bg: transparent;
  --bs-accordion-transition: color 0.15s ease-in-out,
    background-color 0.15s ease-in-out, border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
  --bs-accordion-border-color: none;
}
.gap-2 {
    gap: .5rem !important;
    list-style: none!important;
}
.kategori .accordion .accordion-body {
  padding: 0 !important;
}

.kategori .accordion #collapseTwo input {
  background-color: transparent !important;
  border: 1px solid var(--black);
}

.kategori .accordion-button {
  padding-left: 0px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  border-bottom: 1px solid var(--secondary);
  color: #166a74;
}

.kategori .accordion-button:not(.collapsed) {
  color: #166a74;
  background-color: transparent;
  box-shadow: none;
}

.kategori-list {
  height: 200px;
  overflow: hidden;
}

.kategori-list::-webkit-scrollbar-track {
  margin-top: 20px;
  -webkit-box-shadow: var(--danger);
  border-radius: 10px;
  margin-top: 20px;
  background-color: var(--secondary);
}

.kategori-list::-webkit-scrollbar {
  margin-top: 20px;
  width: 3px;
  background-color: var(--secondary);
}

.kategori-list::-webkit-scrollbar-thumb {
  margin-top: 20px;
  background-color: var(--danger);
  border-radius: 10px;
}

.kategori-list .form-check-input:checked {
  background-color: var(--danger);
  border-color: var(--danger);
  box-shadow: none;
}

.harf-kisitlama {
  height: 50px;
  overflow: hidden;
}

.product-wrapper {
  margin: 0 auto;
}

.product-heading {
  font-size: 2.2rem;
  text-align: center;
  margin: 3rem 0;
  opacity: 0.9;
}

.product-item {
  box-shadow: rgba(149, 157, 165, 0.062) 0px 8px 24px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--secondary);
  margin: 6px;
}

.product-img {
  width: 100%;

}

.product-img-slider {
  display: flex;
  transition: transform 0.3s ease-in-out;

  width: 100%;
}

.product-img-slider img {
  min-width: 100%;
  width: 100%;
  height: 100%;
}

@media (min-width:990px) {
  .product-img:hover .product-img-slider {
    transform: translateX(-100%);
  }
}

.product-img button {
  position: absolute;
  left: 0;
  top: 2rem;
  border: none;
  color: var(--white);
  background-color: var(--secondary);
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  padding: 0.8rem 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

input.sf-button.sf-button-large.sf-neutral-button {
  background-color: #166873 !important;
}

.product-img button:hover {
  background-color: var(--dark-danger);
}

li.sf-form-item-fullwidth {
  font-size: 14px !important;
  font-family: "Poppins", sans-serif;
  font-weight: 500!important;
}
.product-info {
  border-top: 1px solid var(--secondary);
  text-align: center;
  padding: 15px;
}
.shopphp-payment-body .font-weight-bold {
  font-weight: 500 !important;
  clear: both;
  width: 100%;
  display: inline-block;
}

.product-name {
    color: var(--dark-danger);
    font-weight: 600;
    font-size: 26px;
    /* height: 54px; */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-decoration: none;
}

.product-price {
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 25px!important;
  display: flex;
  flex-direction: column;
}

.product-icons {
  margin-top: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-icons span {
  width: 40px;
  height: 40px;
  background-color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0.3rem;
  cursor: pointer;
  transition: all 0.3s ease;
}


.product-grid {
  margin-bottom: 2rem;
  display: grid;
  gap: 2rem;
}

@media screen and (min-width: 576px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 992px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }


}

.product-detail .old-price {
  text-decoration: line-through;
  color: var(--black);
  font-weight: 600;
  font-size: 20px;
}

.product-detail .new-price-box {
  border: none;
  width: unset;
  display: flex;
  align-items: flex-start;
  border-radius: 2px;
  background-color: var(--soft-success);
}

.product-detail .new-price-box .new-price {
  font-size: 24px;
  font-weight: 700;
}

.product-detail .discount {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  color: var(--white);
  background-color: var(--danger);
}

.product-detail .cargo-text {
  display: inline-block;
  background-color: var(--danger);
  padding: 20px 50px !important;
  border-radius: 2px;
}

.product-detail .cargo-text .fa-truck {
  font-size: 36px;
  color: var(--white);
}

.product-detail .cargo-text .center {
  color: var(--white);
}

.product-detail .cargo-text .center .truck-title {
  font-weight: 700;
}

.product-detail .renk .color-box {
  width: 34px;
  max-width: 34px;
  max-height: 34px;
  height: 34px;
}

.product-detail .renk .color-box:focus {
  outline: 0;
  box-shadow: none;
}

.product-detail .renk .color-box.yellow {
  background-color: #f8f384;
  border: 1px solid #eee;
}

.product-detail .renk .color-box.orange {
  background-color: #fb7136;
  border: 1px solid #eee;
}

.product-detail .renk .color-box.red {
  background-color: #5dd7c8;
  border: 1px solid #eee;
}

.product-detail .renk .color-box.green {
  background-color: green;
  border: 1px solid #eee;
}

.product-detail .renk .color-box.blue {
  background-color: #7ac7ff;
  border: 1px solid #eee;
}

.product-detail .renk .color-box.black {
  background-color: var(--black);
  border: 1px solid #eee;
}

.product-detail .renk .color-box.purple {
  background-color: #f58fae;
  border: 1px solid #eee;
}

.product-detail .renk .color-box.white {
  background-color: #ffffff;
  border: 1px solid #eee;
}

.product-detail .firsat {
  background-color: var(--soft-success);
}

.product-detail .firsat .kaza {
  font-size: 20px;
}

.product-detail .firsat .form-check-input:checked {
  background-color: var(--danger);
  border-color: var(--dark-danger);
}

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

.product-detail .fa-heart {
  padding: 10px;
}

@media (max-width: 772px) {
  .description {
    padding-top: 30px;
  }

  .description .nav-item {
    width: 100% !important;
    display: flex;
    align-items: start;
    justify-content: start;
    text-align: start;
    display: flex;
    padding: 5px;
  }

  .description .nav-item .active {
    border: 0;
    border-radius: 0px !important;
    border-bottom: 1px solid var(--secondary);
  }

  .description .nav-link {
    border: 0;
    text-align: start;
    width: 100% !important;
  }

  .description .nav-tabs {
    padding: 5px;
    border: 0 !important;
  }
}

:root {
  --white: #fff;
  --black: #333;
  --soft-danger: rgba(249, 78, 63, 0.39);
  --danger: #F94E3F;
  --dark-danger: #1d4389;
  --soft-success: #D8EEE2;
  --success: #44C46F;
  --secondary: rgba(31, 31, 31, 0.08);
  --soft-secondary: rgba(179, 179, 179, 0.63);
  --gold: gold;
  --text-color: #4f545a;
}

html,
body {
  font-family: "Poppins", sans-serif;
}

.text-hover {
  color: var(--black);
}

.text-hover:hover {
  color: var(--danger);
  transition: 0.2s;
}

.text-hover-2 {
  color: var(--white);
}

.text-hover-2:hover {
  color: var(--danger);
  transition: 0.2s;
}

.text-danger {
  color: var(--danger);
}

.bg-danger {
  background-color: var(--danger);
}
.gap-10 {
  gap: 10rem !important;
}
.danger-btn {
  background-color: var(--danger) !important;
  color: var(--white);
  display: flex;
  padding: 8px 16px;
}

.danger-btn:hover {
  background-color: var(--dark-danger);
  transition: 0.5s;
  color: var(--white);
}

.outline-dark-btn {
  display: flex;
  padding: 8px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 4px;
  border: 1px solid var(--black) !important;
}

.outline-dark-btn:hover {
  border: 1px solid var(--danger) !important;
}

.outline-btn-secondary {
  border: 1px solid var(--secondary);
  border-radius: 30px;
}

.outline-btn-secondary:hover {
  border: 1px solid var(--danger) !important;
}

.gold {
  color: var(--gold);
}

.text-dark {
  color: var(--black);
}

.price-colour {
  color: var(--text-color);
}

@media (max-width: 772px) {
  .outline-btn-secondary {
    width: 100% !important;
  }
}

.owl-button {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border: none;
  z-index: 9;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.owl-button.customNextBtn-1 {
  right: -50px;
}

.owl-button.customPrevBtn-1 {
  left: -50px;
}

.owl-button.customNextBtn-2 {
  right: -50px;
}

.owl-button.customPrevBtn-2 {
  left: -50px;
}

.owl-button.customNextBtn-6 {
  right: -50px;
}

.owl-button.customPrevBtn-6 {
  left: -50px;
}

.main-banner {
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 100%;
}

.main-banner img {
  width: 100%;
  max-width: 100%;
  box-shadow: rgb(38, 57, 77) 0px 15px 20px -10px;
  border-radius: 5px;
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.main-banner img:hover {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.mt-100 {
  margin-top: 100px;
}

.mt-50 {
  margin-top: 50px;
}

.owl-button:focus {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px !important;
}

.kategori .accordion-body .sidebar-kategoriler li {
  list-style: none;
}

.kategori .accordion-body .sidebar-kategoriler li a {
  color: #333;
  font-size: 16px !important;
  font-style: normal;
  font-weight: 500;
}

.sidebar-kategoriler {
  padding: 10px !important;
}

.indirim-yazi {
  color: #fff;
  font-size: 22px;
  font-weight: 500;
}

.guvenilir-alisveris .cargo-badge {
  color: #000;
  font-size: 12px;
  font-weight: 700;
  line-height: 23px;
  background-color: #fff;
  padding: 5px 10px;
  border: 1px solid rgba(62, 62, 62, 0.25);
  border-radius: 5px;
}

.yeni #tel-birakin .number {
  display: none !important;
}

.yeni .whatsapp_tabela {
  margin-top: 0 !important;
  width: 100%;
}

.yeni .whatsapp_tabela .wrap {
  border: 1px solid #e5e5e5 !important;
  padding: 15px 16px !important;
  display: flex !important;
  align-items: center !important;
  gap: 30px !important;
  border-radius: 5px !important;
  width: 100% !important;
}

.yeni .whatsapp_tabela .wrap:hover {
  border-color: var(--green) !important;
}

.whatsapp_tabela .wrap .right {
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
}

.yeni .whatsapp_tabela .wrap .right p.title {
  text-transform: uppercase !important;
  color: #5f5f5f;
  font-size: 14px !important;
  font-weight: 600 !important;
  margin: 0 !important;
}

.yeni .whatsapp_tabela .wrap .right p.number {
  font-size: 25px !important;
  font-weight: 600 !important;
  color: #5f5f5f !important;
  margin: 0 !important;
  display: none;
}

.yeni .whatsapp_tabela .wrap .right p.slogan {
  color: #5f5f5f !important;
  font-weight: 400 !important;
  margin: 0 !important;
  font-size: 8px !important;
  display: none;
}

.yeni .whatsapp_tabela .wrap .icon {
  height: 20px;
}

.yeni .whatsapp_tabela .wrap .icon i.fa {
  font-size: 20px !important;
}

.yeni .whatsapp_tabela .wrap .icon {
  width: auto !important;
}


.urunSecimTable {
  padding: 10px;
  border: 2px dashed #ccc;
  margin: 0 0 15px !important;
  display: block;
  background: rgba(255, 246, 166, 0.32)
}

.urunSecimTable td select {
  width: 100%;
  border: 2px solid #efebeb !important;
  border-radius: 0 !important;
  padding: 2px 8px !important;
  font-size: 16px !important !important
}

.urunSecimTable tr {
  display: block
}

.urunSecimTable td {
  padding: 0
}

.urunSecimTable .UrunSecenekleri {
  display: none
}

.urunSecimTable .UrunSecenekleriHeader {
  font-weight: 700;
  font-size: 14px;
  margin-top: 12px
}

.urunSecimTable ul.urunSecim li {
  border: 2px solid #ccc;
  background: #fff;
  color: #666;
  font-size: 13px;
  padding: 6px 10px;
  display: inline-block;
  vertical-align: top;
  margin: 5px 5px 0 0;
  position: relative;
  -webkit-transition: all .2s;
  -moz-transition: all .2s;
  -ms-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
  font-weight: 700;
  cursor: pointer;
  border-radius: 6px
}

.urunSecimTable ul.urunSecim li:hover {
  border: 2px solid #DF0632;
  color: #fff;
  background: #DF0632
}

.urunSecimTable ul.urunSecim li.selected {
  color: #fff;
  background: #DF0632;
  border: 2px solid #DF0632
}

.urunSecimTable ul.urunSecim li.disabled {
  border: 2px solid #ccc !important;
  color: #a9a9a9 !important;
  cursor: default !important;
  background: #fffce2 url(../../images/diagonal_bar.png) no-repeat center !important;
  background-size: 100% 100% !important
}

.product-variant.yeni {
  width: 100%;
}

.yerli-uretim {
  display: none !important;
}

.yeni .whatsapp_tabela {
  margin-top: 0 !important;
}

.yeni .whatsapp_tabela .wrap {
  border: 1px solid #e5e5e5 !important;
  padding: 15px 16px 15px 80px !important;
  display: flex !important;
  align-items: center !important;
  gap: 20px !important;
  border-radius: 5px !important;
}

.yeni .whatsapp_tabela .wrap:hover {
  border-color: var(--green) !important;
}

.whatsapp_tabela a .wrap {
  background-color: #44C46F !important;
  color: #FFF !important;
}

.whatsapp_tabela a .wrap .icon i {
  color: #FFF !important;
}

.whatsapp_tabela a .wrap .title {
  color: #FFF !important;
}

.description {

}
.fw-semibold {
  font-weight: 200 !important;
}

.accordion-button:not(.collapsed) {
  color: var(--bs-accordion-active-color);
  background-color: #ffffff00!important;
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}
.description .nav-tabs .nav-link {
  color: #000;
  font-weight: 600;
  font-size: 14px;
}

.description .nav-tabs .nav-link.active {
  background-color: var(--danger) !important;
  color: #fff !important;
  font-weight: 500;
}

.description .urundetay-tabs-yorum .sf-form-container {
  background-color: transparent !important;
}

.footer-title {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
}

.footer-top {
  padding: 50px 0;

}

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid #6d6d6d;
}

.footer-bottom .copyright-text {
  color: #fff;
  font-weight: 500;
  font-size: 14px;
}

footer .logo {
  height: auto !important;
}

footer .footer-items {
  color: #fafafa;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  text-decoration: none;
}

footer .footer-items-div a {
  color: #fafafa;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  text-decoration: none;
}

.bg-dark {
    --bs-bg-opacity: 1;
    background-color: #03394b !important;
}

.social-icons {
  color: #fff;
  font-size: 20px;
}

.urun-buttons {
  width: 40px;
  height: 40px;
  background-color: rgb(29 67 137);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0.3rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  color: #fff;
}
.urun-buttons:hover {
    width: 40px;
    height: 40px;
    background-color: rgb(222, 222, 222);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    color: #fff;
}


.accordion-body #filterContainer ul {
  padding: 10px !important;
}

.accordion-body #filterContainer ul .filitreBaslik {
  font-size: 15px;
  margin-bottom: 10px;
  margin-top: 5px;
}

.sayfaIcleri {
  margin-top: 50px;
}

.sayfaIcleri .anasBaslik {
  margin-bottom: 40px;
}

.sayfaIcleri .anasBaslik h2 {
  text-transform: capitalize !important;
}

h5.list-view-product-name a {
  font-size: 18px !important;
  line-height: 22px !important;
  color: var(--black) !important;
  height: 46px !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

.list-view-product-container img {
  width: 100%;
  max-width: 100%;
}

.list-view-product-container {
  margin-bottom: 10px;
}

.list-view-product-container .discount-badge {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.list-view-old-price {
  font-size: 14px !important;
}

.list-view-product-price {
  font-size: 20px;
}

.sepet-sayac {
  display: none;
}
.text-red-400 {
    --tw-text-opacity: 1;
    color: rgb(29 67 137)!important;
}
.hizli-button-siparis {
    width: 49%;
    float: right;
    background-color: #1d4389!important;
    color: #fff;
    border: none;
    font-size: 14px !important;
}
.catSlider .pagenum img {
  width: 100% !important;
  height: 100%;
  max-width: 100%;
}

@media screen and (max-width: 992px) {
  .product-detail-buttons {
    width: 100% !important;
  }

  #urunsirala tr {
    display: flex;
    flex-direction: column;
    gap: 10px;

  }

  #urunsirala tr select {
    width: 96% !important;
  }

  .kategori-sayfasi .page-title {
    display: none !important;
  }

  .arama-sonuclari .col-lg-4 {
    max-width: 50% !important;
  }

  .catSlider .sldinfo {
    margin-left: 110px !important;
  }

  .catSlider .gitbtn {
    top: 145px !important;
    margin-left: 110px !important;
  }

  .catSlider .overview li {
    height: 200px !important;
  }

  .mobile-tum {
        background-color: var(--danger);
        color: #fff !important;
        border-radius: 5px;
        padding: 5px 8px;
        font-size: 13px !important;
  }

  .guvenilir-alisveris .cargo-badge {
    font-size: 10px !important;
    padding: 5px 13px !important;
  }

  .mobile-buttonlar-header {
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
  }

  #kategori-mobil-gorunum {
    overflow: auto;
    flex-wrap: nowrap;
  }

  .footer-top {
    padding: 20px 0;
  }

  .mobil-footer-sosyal-medya {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .swiper-slide .top-slider-text {
    font-size: 12px !important;
  }

  .offcanvas .menu-list-item a {
        font-size: 16px;
        font-weight: 500;
        color: #000;
        line-height: 28px;
  }  
  .offcanvas .list-group-item a {
        font-size: 16px;
        font-weight: 400;
        color: #000;
        line-height: 28px;
  }

  .offcanvas .menu-list-item i {
    display: none !important;
  }

  .offcanvas .menu-dropdown-wrapper {
    display: none !important;
  }

  .offcanvas .menu-list-item {
    list-style: none !important;
	padding: 5px 0px;
  }

  .logo {
    height: 35px !important;
    width: 135px !important;
  }

  .mt-50 {
    margin-top: 35px !important;
  }
.urun-buttons {
    width: 35px;
    height: 35px;
    background-color: rgb(29 67 137);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    color: #fff;
}
  .section-1 .section-title {font-size: 25px !important;}
  .section-2 .section-title {font-size: 25px !important;}
  .section-3 .section-title {font-size: 25px !important;}
  .section-4 .section-title {font-size: 25px !important;}

  .product-img {
    height: 200px !important;
  }

  .product-item .product-name {
    height: auto !important;
    font-size: 14px !important;
  }

  .product-item .product-price {
    font-size: 18px !important;
  }

  .product-item .product-icons {
    margin-top: 10px !important;
  }
.sf-form-container div {
    padding: 0px 30px;
}
.footer-title {
    font-size: 17px;
    color: #fff;
    font-weight: 700;
}
footer .footer-items-div a {
    color: #fafafa;
    font-size: 13px;
    font-weight: 400;
    line-height: 14px;
    text-decoration: none;
}
.footer-bottom .copyright-text {
    color: #fff;
    font-weight: 500;
    font-size: 11px;
}
.description {
    border-radius: 10px;
    padding: 5px 5px;
    background-color: #ececec;
}
  .product-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }

  .mobil-urundetay-fiyat {
    display: flex;
    flex-wrap: nowrap !important;
  }

  .product-variant.yeni {
    width: 100% !important;
  }

  .whatsapp_tabela .wrap .right {
    width: 100% !important;
  }

  .search-filters {
    width: 77vw !important;
  }

  .bizeulasin-main .bulten-mobil {
    width: 100% !important;
  }

  .bizeulasin-main .bulten-mobil .ebulten-input {
    width: 100% !important;
  }

  .bizeulasin-main {
    padding: 50px 25px !important;
  }

  .bizeulasin-main .text {
    text-align: center;
  }
}

.filter-button {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 15px 20px;
  background-color: #fff;
  color: #807f80;
  border-radius: 10px;
  border: 1px solid rgba(128, 127, 128, 0.5);
}

.filter-button.tabs-buttons {
  color: #111;
  font-weight: 500;
  font-family: "Poppins", sans-serif !important;
  font-size: 16px;
  padding: 10px !important;
}

.search-filters {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  padding: 10px;
  width: 400px;
  border-radius: 10px;
  border: 1px solid rgba(128, 127, 128, 0.5);
  max-height: 300px;
  overflow: auto;
  visibility: hidden;
  z-index: 9999;
}

.search-filters.tab-filters {
  margin: 0 0.75rem;
}

.search-filters.tab-filters .nav-item a {
  display: block;
  font-size: 16px;
  color: var(--black);
  font-weight: 500;
  width: 100% !important;
}

.search-filters.active {
  visibility: visible;
}

.search-filters ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  gap: 15px;
}

.search-filters ul li {
  display: block;
}

.filter-button-text {
  color: var(--black);
  font-weight: 600;
}

.search-filters .tabs-items.active {
  color: var(--danger) !important;
  border-bottom: 3px solid var(--danger);
  padding-bottom: 6px;
}


.bizeulasin-main {
  background-color: var(--danger);
  padding: 50px 0;
  border-radius: 5px;
}

.bizeulasin-main .title {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  line-height: 20px;
}

.bizeulasin-main .text {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
}

.bizeulasin-main .ebulten-input {
  background-color: #1d4389;
  border-radius: 50px;
  padding: 15px 25px;
  border: none;
  width: 650px;
}

.bizeulasin-main .gonder-button {
  background-color: var(--danger);
  padding: 12px 25px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  border-radius: 50px;
  border: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
}

.kayan-yazi {
  background-color: rgba(249, 78, 63, 0.226);
  display: flex;
  align-items: center;
  padding: 10px;
}

.kayan-yazi .yazi {
  font-weight: 600;
}

.breadcrumb-menubar a {
  color: var(--black);
  text-wrap: nowrap;
  font-size: 14px;
}

.breadcrumb-menubar li a::after {
  content: "/";
  margin-left: 10px;
}

.breadcrumb-menubar li:nth-last-child(-n + 2) a::after {
  content: "" !important;
}

/* .kategori-sayfasi .BreadCrumb
{
  font-size: 25px;
  line-height: 25px;
}
.kategori-sayfasi .page-title
{
  font-size: 20px;
  font-weight: 500 !important;
  margin-left: 15px;
  margin-top: 15px;
  display: flex;
  gap: 10px;
} */

.kategori-sayfasi .page-title {
  display: flex;
  gap: 10px;
}

.kategori-sayfasi .page-title {
  /* display:none;*/
  font-size: 20px;
  font-weight: 500 !important;
  /* margin-left: 15px; */
  margin-top: -7px;
}

.kategori-sayfasi .page-title a {
  /* display:none;*/
  font-size: 20px !important;
  font-weight: 500 !important;
}

.page-title {
  margin-top: 20px;
}

.favorite.fav {
  color: black;
}

.favorite.fav.active {
  color: orange;
}

.product-detail-buttons {
  width: 100%;
}
.detay-accordion .accordion-button { padding: 1rem 0; }
.detay-accordion .accordion-item { border-bottom: 1px solid #e5e7eb; }
.detay-accordion .accordion-button:focus { box-shadow: none; }
.favori-btn-div {
  padding: 8px 16px;
  border-radius: 4px;
  border: 1px solid var(--black) !important;
}

.add-cart-button.fav {
  color: transparent;
}

.add-cart-button.fav.active {
  color: var(--danger);
}

.etikets .etiket {
  color: #222;
  font-size: 14px;
}

.add-cart-button {
  padding: 14px 20px;
  border-radius: 5px;
  background-color: #fff;
  border: 1px solid #BBB;
  color: var(--danger);
}

.urun-buttons.fav.active {
  color: var(--danger);
}

.close-topMenu {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #000;
  font-size: 20px;
}

.swiper-slide {
  font-weight: 600 !important;
}

#main-slide .owl-dots .owl-dot {
  width: 14px;
  height: 7px;
  background-color: #ededed;
  display: block;
  border-radius: 5px;
  transition: all .4s ease-in-out;
}

#main-slide .owl-dots .owl-dot.active {
  width: 32px;
  background-color: #000;
}

#main-slide .owl-dots {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: 20px;
}

.category::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 2px rgba(57, 62, 70, 0.12);
  background-color: #f5f5f5;
}

.category::-webkit-scrollbar {
  height: 5px;
  width: 5px;
  background-color: rgba(57, 62, 70, 0.12);
}

.category::-webkit-scrollbar-thumb {
  background-color: #555555;
  border-radius: 50px;
  border: 2px solid #555555;
}

.header-absolute-button {
  position: absolute;
  top: 57%;
  transform: translateX(-50%);
  border: none;
  background-color: transparent;
}

.header-arrow-left {
  left: -33px;
}

.header-arrow-right {
  right: -44px;
}

.collapse-link {
  display: flex;
}

.collapse-link::after {
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23212529' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: 1.25rem;
  transition: transform 0.2s ease-in-out;
  margin-left: auto;
  transform: rotate(-180deg);
}

.collapse-link.collapsed::after {
  transform: rotate(0);
}


.slider-item-ratio .slider-container>*>* {
  position: absolute;
  top: 0;
  left: 0;
  /* width: 100%; */
  height: 100%;
  object-fit: contain !important;
}

.js-drawer.drawer {
  height: 100% !important;
}

.catSlider .viewport .overview li {
  border: 1px solid #EEE;
  padding: 15px;
}

.catSlider .viewport .overview li .sldimg {
  border: 1px solid #EEE;
}

.sldinfo {
  margin-left: 325px !important;
}

.gitbtn {
  margin-left: 325px !important;
}

.detayblok .page-title {
  font-size: 25px !important;
  margin-bottom: 20px !important;
}

.arama-sonuclari .col-lg-4 {
  max-width: 25%;
}

.searchResultFilter li a {
  color: #222;
  font-size: 14px;
  font-weight: 500;
}

.page-inner-content .topresults {
  color: #222;
  font-size: 16px;
  font-weight: 500;
}

.BreadCrumb {
  color: #222;
}

.kategori-listeleri .page-title {
  font-size: 0px !important;

}

.kategori-listeleri .page-title .BreadCrumb:first-child {
  display: none !important;
}

@media (max-width:990px) {
  .detaytabs .nav-item {
    width: 50% !important;
  }

  .detaytabs .nav-link {
    width: 100% !important;
    padding: 10px 15px !important;
    font-size: 14px !important;
    text-align: center !important;
  }

  .detaytabs>li {
    margin-right: 0 !important;
  }

  #hizli-uye-menu a {
    color: #000;
  }
}

@media (max-width:990px) {
  html ::-webkit-resizer {
    background-color: #fff
  }

  html ::-webkit-scrollbar {
    width: 5px;
    overflow: visible;
    height: 2px;
  }

  html ::-webkit-scrollbar-button {
    display: none
  }

  html ::-webkit-scrollbar-corner {
    background-color: #fff
  }

  html ::-webkit-scrollbar-thumb {
    background-color: rgba(138, 138, 138, .4);
    border-radius: 7px
  }

  html ::-webkit-scrollbar-track-piece {
    background-color: #fff
  }
}

/* BLOG CARD MOBIL GORUNUM START  */
@media(max-width:990px) {
  .blog-card img {
    height: auto;
  }

  .blog-date-tag {
    top: 10px;
    left: 10px;
    padding: 3px 16px;
    font-size: 12px;
  }

  .blog-content {
    padding: 15px;
  }

  .blog-title {
    font-size: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 63px;
  }

  .blog-arrow-icon {
    display: none !important;
  }
}
.slcontainer{
	max-width: 1920px;
	margin: auto;
}
/* BLOG CARD MOBIL GORUNUM END  */
.piyasa-indirim {
    background: #27d410;
    color: #fff;
    padding: 4px 10px;
    font-size: 13px;
    font-weight: bold;
    border-radius: 0 0 8px 0;
    z-index: 2;
}

.old-price {
    text-decoration: line-through;
    color: #888;
    font-size: 18px;
}

.new-price {
    font-weight: bold;
    color: #156b75;
}

.urunAjax {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-.5 * var(--bs-gutter-x));
  margin-left: calc(-.0 * var(--bs-gutter-x));
}



@-webkit-keyframes marquee_marquee_left {
  0% {
    transform: translateX(-1%)
  }

  to {
    transform: translateX(-51%)
  }
}

@keyframes marquee_marquee_left {
  0% {
    transform: translateX(-1%)
  }

  to {
    transform: translateX(-51%)
  }
}

.page-inner-content {--bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-.5 * var(--bs-gutter-x));
}
.basket-right ul li {
  border: none !important;
  margin-top: 15px!important;
}
.page-inner-content .col-lg-3 {
  padding: 0px 8px;
}

@media (max-width: 991px) {
  .logo img {
 height: auto;
  }
}
/* --- Ürün Kartı Stilleri --- */
.card-compact {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid #e9ecef;
  border-radius: 14px;
  background: #fff;
  transition: box-shadow .2s ease, transform .12s ease;
}
.card-compact:hover { box-shadow: 0 8px 28px rgba(0,0,0,.08); transform: translateY(-1px); }

/* İndirim rozeti */
.piyasa-indirim {
  position: absolute;
  top: .6rem; left: .6rem;
  z-index: 3;
}
.piyasa-indirim .badge-pill{
  display:inline-flex; align-items:center; gap:.35rem;
  padding:.35rem .6rem;
  border-radius:999px;
  background:#2ecc71; color:#fff; font-weight:700; font-size:.78rem; line-height:1;
}
.piyasa-indirim small{font-weight:600; opacity:.9}

/* Görsel alanı */
.product-img{
  position: relative; overflow: hidden;
  aspect-ratio: 3 / 3; /* görsel yoksa alan korunur */
  
}
.product-img img{ width:100%; height:100%; object-fit: cover; display:block; }
.product-badges{
  position:absolute; right:.6rem; top:.6rem; display:flex; gap:.35rem; flex-wrap:wrap;
}

/* Bilgi alanı */
.product-info{ display:flex; flex-direction:column; }

.product-name{
  font-weight:700; font-size:1rem; line-height:2; color:#156b75; text-decoration:none;
  display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden;
  border-bottom: solid 1px #eee; padding-bottom: 12px;
}
.product-name:hover{ color:#0d6efd; }

.product-rating{ display:flex; align-items:center; gap:.35rem; font-size:.85rem; color:#f1b709; }
.product-rating .rating-text{ color:#6c757d; font-size:.8rem; padding-bottom: 10px; }

.product-price{ display:flex; align-items:baseline;}
.product-price .old-price{
  color:#a0a4a8; text-decoration: line-through; font-size:1rem; font-weight: 400;
}
.product-price .new-price{
  color:#2e7d32; font-weight:800; font-size:1.1rem;
}

/* Kısa özellikler */
.product-features{
  margin:0; padding:0; list-style:none; color:#5b6166; font-size:.88rem; display:grid; gap:.25rem;
}
.product-features li {
    display: flex;
    gap: .25rem;
    font-size: 0.8rem;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.product-features:empty{ display:none; }

/* Aksiyon butonları */
.product-icons{
  margin-top:.25rem; display:flex; gap:.4rem;
}
.urun-buttons{
  width:40px; height:40px; display:grid; place-items:center;
  border:1px solid #e9ecef; border-radius:10px; background:#fff; color:#333;
  transition: background .15s ease, border-color .15s ease, transform .1s ease;
}
.urun-buttons:hover{ background:#2e7e33; border-color:#d7e3ff; transform: translateY(-1px); }
.urun-buttons i{ font-size:1rem; }

/* Responsive */

@media (min-width: 768px){
  .card-compact{ grid-template-rows: auto 1fr; }
}
.hardness-scale {
  display: flex;
  gap: .5rem;
  font-size: .65rem;
  font-weight: 600;
  color: #adb5bd;
}

.hardness-scale span {
  position: relative;
  padding: .2rem .5rem;
  border-radius: 6px;
  background: #f1f3f5;
}

.hardness-scale[data-level="1"] span:nth-child(1),
.hardness-scale[data-level="2"] span:nth-child(2),
.hardness-scale[data-level="3"] span:nth-child(3) {
  background: #2e7d32;
  color: #fff;
}
.product-ondetay {
  text-align: left;
  font-size: .9rem;
  color: #444;
  line-height: 0.2;
  margin-left: -17px;
  white-space: pre-line;   /* textbox satır sonlarını koru */
  position: relative;
}

.product-brand {
  font-size: 12px;
  /* küçük */
  font-weight: 400;
  /* regular */
  color: #6B7280;
  /* soft gri; istersen var(--text-muted) kullan */
  line-height: 1.2;
  margin-bottom: 4px;
  /* marka ile ürün adı arası boşluk */
  text-transform: none;
  /* istersen uppercase yapabilirsin */
}

/* Detay sayfasında biraz daha okunaklı istersen: */
.product-detail .product-brand {
  font-size: 13px;
  margin-bottom: 6px;
}
.blog-excerpt {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin: 10px 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* max 3 satır */
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.daha {        display: inline-flex;
        align-items: center;
        font-size: .9rem;
        line-height: 1;
        font-weight: var(--font-body-medium-weight, 500);
        letter-spacing: var(--button-letter-spacing, .02em);
        cursor: pointer;
        position: relative;
        color: var(--color-accent);
        text-decoration: underline;
        text-underline-offset: 3px;
        }
  .row>* {
    padding-right: calc(var(--bs-gutter-x) * .0!important);

}
nobr {
    display: none;
}
.firmness-wrap{
  display:flex; align-items:center; gap:16px;
  padding:12px 14px; border:2px solid #1f2342; border-radius:14px;
  background:#f7f8fb; color:#1f2342; font-family:inherit;
}
.firmness-side{ display:flex; align-items:center; gap:8px; min-width:90px }
.firmness-side svg{ width:28px; height:28px }
.firmness-side span{ font-weight:600; font-size:14px }

.firmness-scale{ position:relative; flex:1 }
.firmness-rail{
  display:grid; grid-template-columns:repeat(10,1fr); align-items:center;
  background:#fff; border:2px solid #1f2342; border-radius:999px;
  padding:10px 18px; position:relative
}
.firmness-rail .tick{
  width:32px; height:32px; border-radius:999px;
  display:flex; align-items:center; justify-content:center;
  font-weight:700; font-size:14px; color:#3a4b67; background:#cfe0f2; opacity:.7;
  user-select:none
}
.firmness-rail .tick.active{ opacity:1 }

.firmness-pointer{
  position:absolute; top:50%; transform:translate(-50%,-50%);
  width:54px; height:54px; border-radius:999px; background:#1f2342;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 6px 16px rgba(31,35,66,.25), inset 0 0 0 2px #1f2342
}
.pointer-value{ color:#fff; font-size:22px; font-weight:800; line-height:1 }

@media (max-width: 480px){
  .firmness-side span{ display:none }     /* mobilde metni sadeleştir */
  .firmness-rail .tick{ width:28px; height:28px; font-size:13px }
  .firmness-pointer{ width:48px; height:48px }
}
@media only screen and (min-width: 1000px) {
  #basket-right-container {
    width: 375px;
    float: right;
    padding-right: 40px!important;
  }
}