.tf-slideshow {
  overflow: hidden;
}
.tf-slideshow .banner-wrapper {
  position: relative;
}
.tf-slideshow .banner-wrapper .box-content {
  position: absolute;
  left: 15px;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Başlık Stilleri */
.tf-slideshow h1 {
  color: white !important;
  font-weight: bold !important;
  font-size: 7rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Paragraf Stilleri */
.tf-slideshow p {
  color: #fff !important;
  font-size: 18px !important;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 3px rgba(0, 98, 83, 0.5);
  line-height: 1.6;
}

/* Buton Stilleri */
.tf-slideshow .tf-btn {
  background: #006253;
  color: #ffffff !important;
  border: none;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 98, 83, 0.3);
}

.tf-slideshow .tf-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 98, 83, 0.4);
  background: linear-gradient(45deg, #fff, #fff);
  color: #006253 !important;
}

.tf-slideshow .tf-btn i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.tf-slideshow .tf-btn:hover i {
  transform: translateX(3px);
}
.brand-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: center;
  padding: 0;
}
.brand-item {
  padding: 50px 0px;
  text-align: center;
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 100%;
  justify-content: center;
  border-left: 0;
}
.brand-thumb {
  max-width: 172px;
}
.brand-thumb img {
  width: 100%;
}

.user {
  background-color: transparent !important;
  border-radius: 0 !important;
  height: auto !important;
  width: auto !important;
}

.user:hover {
  background-color: transparent !important;
}

.icon-login {
  background-color: transparent !important;
  border-radius: 0 !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
}

.cart button {
  background-color: transparent !important;
  border-radius: 0 !important;
  width: auto !important;
  height: auto !important;
  padding: 0 !important;
}

.cart button:hover {
  background-color: transparent !important;
}

.icon-cart {
  background-color: transparent !important;
  border-radius: 0 !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
}

/* Hide cart total price */
#cart-total {
  display: none !important;
}

/* Hide cart quantity badge */
.cart .adet {
  display: none !important;
}

/* Simple styling for icons */
.icon-login svg,
.icon-cart svg {
  width: 27px !important;
  height: 27px !important;
  font-size: 16px !important;
  font-weight: 500 !important;
}
#amm_drcfw_toast_msg {
  visibility: hidden;
  min-width: 250px;
  margin-left: -125px;
  font-weight: 500;
  background-color: #006253;
  color: #242424;
  text-align: center;
  border-radius: 6px;
  padding: 16px;
  position: fixed;
  z-index: 999;
  left: 50%;
  bottom: 30px;
  font-size: 18px;
}

#amm_drcfw_toast_msg.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }

  to {
    bottom: 30px;
    opacity: 1;
  }
}

@keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }

  to {
    bottom: 30px;
    opacity: 1;
  }
}

@-webkit-keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }

  to {
    bottom: 0;
    opacity: 0;
  }
}

@keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }

  to {
    bottom: 0;
    opacity: 0;
  }
}
link[rel="mask-icon"] {
  border: none;
}
.search-box {
  width: 100%;
  position: relative;
  display: flex;
  height: 46px;
}

.search-input {
  width: 270px;
  padding-left: 10px;
  border: 2px solid #414141;
  border-radius: 10px 0 0 10px;
  border-right: none;
  outline: none;
  font-size: 14px;
  color: #414141;
  background: #fff;
}

.search-button {
  text-align: center;
  height: 46px;
  width: 65px;
  outline: none;
  cursor: pointer;
  border: 2px solid #414141;
  border-radius: 0 10px 10px 0;
  background-color: #006253;
  border-left: none;
  font-size: 14px;
  border-left: none;
  color: #414141;
  font-weight: 600;
  font-style: normal;
}

.search-button:hover {
  background-color: #282828;
  color: rgb(240, 240, 240);
  transition: all 0.25s ease;
}

@media (min-width: 320px) and (max-width: 1080px) {
  .search-box {
    width: 100%;
    position: relative;
    display: flex;
    height: 60px;
    padding: 6px 10px;
    background-color: #202020;
  }

  .search-input {
    width: 100%;
    padding-left: 10px;
    border: 2px solid #414141;
    border-right: none;
    outline: none;
    font-size: 14px;
    color: #777;
    background: none;
    height: 46px;
    background-color: #fff;
    -webkit-border-top-left-radius: 10px;
    -webkit-border-bottom-left-radius: 10px;
    -moz-border-radius-topleft: 10px;
    -moz-border-radius-bottomleft: 10px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
  }

  .search-button {
    text-align: center;
    height: 46px;
    width: 65px;
    outline: none;
    cursor: pointer;
    border: 2px solid #414141;
    background-color: #006253;
    border-left: none;
    font-size: 14px;
    border-left: none;
    color: #414141;
    font-weight: 600;
    font-style: normal;
    -webkit-border-top-right-radius: 10px;
    -webkit-border-bottom-right-radius: 10px;
    -moz-border-radius-topright: 10px;
    -moz-border-radius-bottomright: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
  }

  .search-button:hover {
    background-color: #414141;
    color: rgb(240, 240, 240);
    transition: all 0.25s ease;
  }
}

.search-input input::placeholder {
  color: #fff;
}

/* Dropdown Menü CSS'i - Header.php ile aynı */
.box-nav-ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-item {
  position: relative;
  padding: 10px 0px;
}

.item-link {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
}

.item-link:hover {
  color: #202020;
}

.menu-item:hover > .sub-menu {
  pointer-events: all;
  opacity: 1;
  visibility: visible;
  transform: translateX(0px) translateY(0px);
}

.sub-menu {
  pointer-events: none;
  position: absolute;
  background-color: #006253;
  min-width: 275px;
  z-index: 999;
  visibility: hidden;
  padding: 10px;
  text-align: left;
  opacity: 0;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.menu-list {
  list-style: none;
  margin: 0;
  padding: 10px 0;
}

.menu-list li {
  margin: 10px;
  padding: 0;
}

.menu-link-text {
  display: block;
  padding: 8px 15px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: background-color 0.2s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-link-text:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.menu-item-2 {
  position: relative;
  cursor: pointer;
}

.menu-item-2::after {
  position: absolute;
  content: "▶";
  font-size: 11px;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
}

.menu-item-2 .sub-menu {
  top: -22px;
  left: calc(100% + 23px);
  min-width: 200px;
}

.menu-item-2 .sub-menu::after {
  position: absolute;
  display: block;
  content: "";
  width: 60px;
  height: 45px;
  background-color: transparent;
  left: -18%;
  top: 3px;
}

.menu-item-2:hover > .sub-menu {
  pointer-events: all;
  opacity: 1;
  visibility: visible;
  transform: translateX(0px) translateY(0px);
}
.link {
  color: #fff;
  font-size: 16px;
  padding: 0 5px;
  font-weight: 600;
}

.link:hover {
  color: #202020 !important;
}

.hoverlink-menu {
  padding: 1em 0em;
  color: #fff;
  font-size: 14px;
  float: right;
}

.hoverlink-menu:hover {
  color: #006253 !important;
}

.hoverlink {
  text-decoration: none;
  padding: 15px 25px;
  border: none;
  cursor: pointer;
  text-align: left;
  color: #ffffff;
  background-color: #006253;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  margin-right: 15px;
}

.hoverlink .wrapper {
  display: none;
  text-align: left;
  margin-left: -10px;
  background-color: #006253;
  position: relative;
  top: 16px;
}

.hoverlink:hover .wrapper {
  background-color: #006253;
  display: inline-block;
  position: absolute;
  z-index: 99;
  width: 265px;
  margin-top: 34px !important;
  left: 14.5px;
}

.nicemenu-item a {
  font-size: 14px;
  cursor: pointer;
  list-style: none;
  padding-left: 10px;
  color: #fff;
  line-height: 32px;
  font-weight: normal;
  display: block;
}

.nicemenu-item:hover a {
  color: #ffffff !important;
}

.altkategoriok {
  display: inline-block;
  position: absolute;
  z-index: 99;
  right: 10px;
  margin-top: 10px;
}

.hoverlink:hover {
  background-color: #333;
}

.hoverlink:hover .nicemenu-sub a {
  color: #222 !important;
}

.resimlinkiImg {
  position: absolute;
  display: block;
  bottom: 0;
}

.nicemenu-sub-banner {
  text-align: center;
  padding: 10px 0;
}

.nicemenu-sub-banner img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.productLabelFavorite {
  background-color: #e74c3c;
  padding: 3px 10px;
  text-align: center;
  color: #fff;
  font-weight: 600;
  border-radius: 5px;
  width: 45px;
  display: flex;
  justify-content: flex-end;
  justify-content: center;
  margin-bottom: 5px;
  cursor: pointer;
  transition: background 0.2s;
}

.productLabelFavorite.favorited,
.productLabelFavorite:hover {
  background-color: #c0392b;
  color: #fff;
}

.productLabelFavorite i {
  font-size: 16px;
}
.multi-banner {
  width: 100%;
  display: flex;
}

.multi-grid {
  width: 100%;
  height: auto;
  display: flex;
  padding-left: 5px;
  padding-right: 5px;
}

.multi-thumb {
  width: 33.333333333333%;
  display: inline-block;
  margin-bottom: 5px;
  margin-right: 10px;
}

.multi-thumb:last-child {
  margin-right: 0px;
}

.multi-thumb img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}

@media (min-width: 300px) and (max-width: 1080px) {
  .multi-grid {
    display: block;
  }

  .multi-thumb {
    width: 100%;
    float: none;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 5px;
  }

  .multi-thumb:last-child {
    margin-bottom: -2px;
  }
}
.multi-banner {
  width: 100%;
  display: flex;
}

.multi-grid {
  width: 100%;
  height: auto;
  display: flex;
  padding-left: 5px;
  padding-right: 5px;
}

.multi-thumb {
  width: 33.333333333333%;
  display: inline-block;
  margin-bottom: 5px;
  margin-right: 10px;
}

.multi-thumb:last-child {
  margin-right: 0px;
}

.multi-thumb img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}

@media (min-width: 300px) and (max-width: 1080px) {
  .multi-grid {
    display: block;
  }

  .multi-thumb {
    width: 100%;
    float: none;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 5px;
  }

  .multi-thumb:last-child {
    margin-bottom: -2px;
  }
}
.video-row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}

.video-col {
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 991px) {
  .video-row {
    flex-direction: column;
  }

  .video-col {
    margin-bottom: 20px;
  }
}

.video-col .box-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  width: 100%;
  height: 100%;
  pointer-events: none;
  /* Butonlar için aşağıda override edilir */
}

.video-col .box-content h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  text-shadow: 2px 2px 8px #00000080;
  margin-bottom: 20px;
  word-break: break-word;
  white-space: normal;
  line-height: 1.1;
  letter-spacing: 1px;
}

.video-col .box-content a {
  pointer-events: auto;
  /* Buton tıklanabilir olsun */
}

@media (min-width: 768px) {
  .video-col .box-content h1 {
    font-size: 3.2rem;
  }
}

@media (max-width: 767px) {
  .video-row {
    flex-direction: column;
  }

  .video-col {
    min-width: 100%;
    margin-bottom: 20px;
  }

  .video-col .box-content h1 {
    font-size: 2rem;
  }
}
.multi-banner {
  width: 100%;
  display: flex;
}

.multi-grid {
  width: 100%;
  height: auto;
  display: flex;
  padding-left: 5px;
  padding-right: 5px;
}

.multi-thumb {
  width: 33.333333333333%;
  display: inline-block;
  margin-bottom: 5px;
  margin-right: 10px;
}

.multi-thumb:last-child {
  margin-right: 0px;
}

.multi-thumb img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}

@media (min-width: 300px) and (max-width: 1080px) {
  .multi-grid {
    display: block;
  }

  .multi-thumb {
    width: 100%;
    float: none;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 5px;
  }

  .multi-thumb:last-child {
    margin-bottom: -2px;
  }
}
.multi-banner {
  width: 100%;
  display: flex;
}

.multi-grid {
  width: 100%;
  height: auto;
  display: flex;
  padding-left: 5px;
  padding-right: 5px;
}

.multi-thumb {
  width: 50%;
  display: inline-block;
  margin-bottom: 5px;
  margin-right: 10px;
}

.multi-thumb:last-child {
  margin-right: 0px;
}

.multi-thumb img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}

@media (min-width: 300px) and (max-width: 1080px) {
  .multi-grid {
    display: block;
  }

  .multi-thumb {
    width: 100%;
    float: none;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 5px;
  }

  .multi-thumb:last-child {
    margin-bottom: -2px;
  }
}
.servis {
  border-style: none;
  border-width: 1px;
  border-radius: 0;
  padding: 10px;
  background-color: #ebebeb;
}

.servis .kolon {
  float: left;
  padding: 20px;
  max-height: 150px;
  width: 20%;
}

.servis .text {
  width: 100%;
}

@media (min-width: 320px) and (max-width: 1024px) {
  .servis .kolon {
    float: left;
    padding: 10px;
    max-height: auto;
    width: 50%;
  }

  .servis .text {
    width: 100%;
    white-space: nowrap;
  }

  .servis .icon i {
    margin-top: 0px !important;
  }
}

.servis .icon {
  margin: auto;
  float: left;
  margin-top: 5px;
}

.servis .icon span {
  width: 36px;
  height: 36px;
  margin: auto;
}

.servis .icon i {
  font-size: 2.5rem;
  font-weight: 900;
  margin: auto;
  margin-right: 10px;
}

.servis h3 {
  font-size: 1.75rem;
  margin: 0;
  color: #212121;
  text-align: left;
}

.servis p {
  font-size: 12px;
  text-align: left;
  margin-bottom: 0;
}
.bizimicindediler {
  color: white !important;
  font-size: 34px !important;
  font-weight: 600 !important;
}

.footer-top {
  padding-bottom: 50px;
  padding-top: 50px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("image/catalog/footer-background-balistikmarket.jpg") no-repeat bottom
      center;
  background-color: #202020;
  background-size: cover;
}

.footer-top a {
  font-size: 14px;
}

.footer-top p {
  font-size: 14px;
}

.footer-center {
  display: flex;
  padding-left: 5px;
  padding-right: 5px;
}

.footer-first-column {
  width: 30%;
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
}

.footer-second-column {
  width: 70%;
  float: left;
}

.newsletter {
  min-width: 100%;
  margin-top: 15px;
}

.newsletter .btn-primary {
  border-radius: 0px 5px 5px 0;
}

.newsletter input {
  border-radius: 5px 0px 0px 5px;
  padding-left: 10px;
  width: 240px;
}

@media (min-width: 320px) and (max-width: 1080px) {
  .bizimicindediler {
    color: white !important;
    font-size: 26px !important;
    font-weight: 600 !important;
  }

  footer {
    margin-top: -5px;
    padding-top: 5px;
    border-top: 1px solid #282828;
    color: #e2e2e2;
  }

  .footer-first-column {
    width: 100%;
    float: none;
    display: flex;
    margin: auto;
    border-bottom: 1px solid #222;
    padding-bottom: 20px;
    margin-bottom: 0px;
  }

  .footer-first-column img {
    margin: auto;
    padding-right: 15px;
    padding-left: 15px;
  }

  .footer-center-first-block {
    padding-right: 0;
    margin-left: auto;
    margin-right: auto;
    display: inline-block;
    padding-left: 0;
  }

  .footer-second-column {
    width: 100%;
    float: none;
    display: inline-block;
    padding-left: 15px;
  }

  .sosyal-medya {
    display: flex;
    width: 100%;
    padding-left: 5px;
    padding-right: 5px;
    margin: auto;
    margin-top: 15px;
  }

  .sosyal-medya ul {
    display: inline-flex;
    padding: 0;
    width: auto;
    flex-flow: nowrap;
    text-align: center;
    margin: auto;
  }

  .sosyal-medya ul li {
    list-style: none;
    height: 50px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all ease 0.3s;
    padding: 0;
    margin: 2.5px;
  }

  .newsletter {
    min-width: 100%;
    margin-top: 15px;
    display: inline-block;
    padding-left: 15px;
    padding-right: 15px;
  }
}

.footer-bottom-right {
  display: block;
  float: none;
  margin: 0;
  padding: 0;
}
.overlay-sepet {
  position: fixed;
  width: 100% !important;
  height: 100% !important;
  display: none;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  min-height: 100% !important;
  background-color: rgb(0, 0, 0, 0.5);
}

/*
transition: visibility 0s ease .4s, opacity .4s ease;
transition-delay: 0.4s, 0s;
*/

.slide-cart-container {
  width: 300px;
  top: 0px;
  left: auto;
  z-index: 1050;
  display: block;
  position: fixed;
  background-color: white;
  clear: right;
  float: right;
}

.sepet-urunler {
  display: block;
  color: black;
  font-weight: bold;
  flex-flow: inherit;
  padding-top: 10px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
  position: relative;
  overflow: auto;
}

.sepet-urunler:hover {
  background-color: rgba(189, 189, 189, 0.2);
}

.sepet-urunler a {
  color: #ffffff;
}

.sepet-urunler .fiyat {
  color: rgb(195, 170, 113);
}

.sepet-urunler:last-child {
  border-bottom: 1px solid transparent;
  margin-bottom: 50px;
}

.toplam-tutar {
  margin-bottom: 10px;
  margin-top: 17px;
  display: inline-block;
  width: 100%;
  text-align: right;
}

.toplam-tutar div:first-child {
  color: #242424;
  font-weight: 600;
  font-size: 16px;
}

.toplam-tutar div:last-child {
  color: red;
  font-weight: 600;
  font-size: 16px;
}

.sepet-right {
  padding-top: 60px;
  padding-bottom: 110px;
}

.btn-sepet-right {
  margin: 15px;
  padding: 10px 15px;
  border-radius: 0;
  font-size: 16px;
  background-color: #ffffff;
}

.btn-sepet-right:focus {
  outline: 0;
}

.modal-header {
  min-height: 50px;
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
}

.yukseklik {
  display: block;
  margin-top: 5px;
  padding-bottom: 25px;
  padding-top: 0px;
  overflow-x: hidden;
  overflow-y: auto;
  min-height: 120px;
}

.slidein-cart-bottom {
  width: 290px;
  font-size: 18px;
  padding-bottom: 10px;
  padding-top: 10px;
  border-top: 2px solid #eee;
  background-color: white;
  padding-left: 10px;
  padding-right: 10px;
  position: absolute;
  display: inline-block;
  bottom: 0;
}

.yukseklik .sepet-remove-btn:hover {
  background-color: white;
}

.modal-action-btn {
  float: right;
  background-color: transparent;
  border: none;
  display: flex;
  margin-top: -1px;
}

.modal-action-btn:hover {
  color: #777;
}

.modal-action-btn:before {
  font-family: "balistik";
  content: "\f191";
  color: #ffffff;
  font-size: 16px;
}

.modal-action-btn:after {
  color: #ffffff;
  margin-inline-end: 0.3em;
  font-size: 110%;
  font-weight: 400;
  padding-left: 5px;
  margin-right: -10px;
}

.fadableElement {
  opacity: 1;
  transition: opacity 5s ease-in-out;
  -moz-transition: opacity 5s ease-in-out;
  -webkit-transition: opacity 5s ease-in-out;
}

@media (min-width: 320px) and (max-width: 1080px) {
  .anagovdeScroll {
    overflow: hidden;
  }
}
.uyarilar {
  position: fixed;
  display: block;
  z-index: 120;
  right: 10px;
}

.uyarilar .alert-success {
  color: #fff;
  background-color: #242424;
  border-color: #242424;
  width: 100px;
  text-align: center;
  border-radius: 5px;

  width: auto;
}

.uyarilar .alert i {
  display: none;
}
#input-sort {
  background: #fff;
  color: #414141;
  border: 2px solid #414141;
}
@media (max-width: 991px) {
  .footer-center {
      flex-direction: column; /* Ana iki sütunu (logo/adres ve linkler) alt alta getirir. */
      align-items: center;    /* İçerikleri ortalamak için. */
  }

  .footer-first-column {
      width: 100%;             /* Sol sütun tam genişlik kaplasın. */
      margin-right: 0;         /* Sağdaki boşluğu kaldır. */
      text-align: center;      /* İçindeki metinleri ve logoyu ortala. */
      margin-bottom: 30px;     /* Altına boşluk ekle. */
      padding-bottom: 30px;    /* Altındaki çizgi için iç boşluk. */
      border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Sütunlar arasına ayırıcı çizgi ekle. */
  }

  .footer-second-column {
      width: 100%;             /* Sağ sütun tam genişlik kaplasın. */
      padding-left: 0;         /* Sol boşluğu sıfırla. */
      padding-right: 0;        /* Sağ boşluğu sıfırla. */
  }

  .sosyal-medya ul {
      justify-content: center; /* Sosyal medya ikonlarını ortala. */
  }

  /* Footer içerisindeki link sütunlarını düzenler */
  .footer-right-block .col-xs-6 {
      width: 50%;              /* Link listelerini yan yana 2'li gruplar halinde gösterir. */
      margin-bottom: 25px;     /* Her link grubunun altına boşluk ekler. */
      text-align: center;
  }
  
  .footer-right-block h5 {
      margin-bottom: 15px; /* Başlıkların alt boşluğunu ayarlar. */
  }

  /* E-bülten ve ödeme ikonları bölümünü düzenler */
  .footer-right-block .col-xs-12[style*="width: 350px"] {
      width: 100% !important;  /* Inline stili ezerek tam genişlik yapar. */
      margin-top: 10px;
  }
  
  .newsletter .input-group {
      max-width: 400px; /* Geniş ekranlarda çok yayılmasını önler. */
      margin: 0 auto 10px auto; /* Otomatik olarak ortalar. */
  }
}

/* Sadece mobil cihazlar için daha küçük ayarlamalar (480px ve altı) */
@media (max-width: 480px) {
  .footer-right-block .col-xs-6 {
      width: 100%;             /* Çok küçük ekranlarda link listelerini alt alta tek sütun yapar. */
      text-align: center;
  }
  
  footer .footer-first-column p {
      font-size: 13px; /* Adres ve iletişim yazısını biraz küçültür. */
  }
  .newsletter input {
    width: 100%;
  }
  .productLabelFavorite {
    background-color: #e74c3c;
    padding: 0px 5px;
    text-align: center;
    color: #fff;
    font-weight: 600;
    border-radius: 5px;
    width: 40px;
    display: flex;
    justify-content: center;
  }
  .fa-heart {
    font-size: 17px !important;
    margin: 2px 0;
  }
  .clearfix > button {
    width: 50% !important;
    background-color: #666;
    color: #fff;
  }
  .fa-home {
      font-size: 17px !important;
  }
  .breadcrumb{
      padding-left: 20px;
      padding-right: 20px;
  }
}
@media (min-width: 481px) {
    .clearfix > button {
    width: 13% !important;
    background-color: #666;
    color: #fff;
}
}