* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #ffffff;
  /*padding-top: 80px; /* Navbar için padding */
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/markalarbg.jpg');
  background-size: contain;
  background-position: top center;
  background-repeat: no-repeat;
  opacity: 0.15;
  z-index: -1;
  pointer-events: none;
}

body.has-fixed-navbar {
  padding-top: 80px;
}

/* Navbar Stilleri - phira.com.tr'den */
.header {
  position: relative;
  z-index: 1010;
}

.header-transparent .navbar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  background-color: transparent;
}

.navbar {
  padding: 0;
  height: 100px;
  max-height: 100px;
  background-color: #ffffff;
  border-bottom: 1px solid #ededed;
}

.navbar.sticky-navbar {
  position: sticky;
  top: 0;
  z-index: 1030;
}

.navbar > .container,
.navbar > .container-fluid {
  position: relative;
  height: 100px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
}

.navbar .navbar-brand {
  padding: 0;
  margin: 0;
  line-height: 100px;
}

.navbar-brand .logo-light,
.navbar-brand .logo-dark {
  height: 60px;
  width: auto;
  max-width: 200px;
}

.navbar-brand .logo-light {
  display: none;
}

.navbar-brand .logo-dark {
  display: inline-block;
}

.header-transparent .logo-light {
  display: inline-block;
}

.header-transparent .logo-dark {
  display: none;
}

.navbar .navbar-toggler {
  padding: 0;
  border: none;
  border-radius: 0;
  width: 23px;
  position: relative;
}

.navbar .navbar-toggler .menu-lines {
  display: inline-block;
}

.navbar .navbar-toggler .menu-lines:before,
.navbar .navbar-toggler .menu-lines:after {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 23px;
  height: 2px;
  display: inline-block;
  background-color: #333333;
  transition: 0.3s ease;
}

.navbar .navbar-toggler .menu-lines:after {
  top: 10px;
}

.navbar .navbar-toggler .menu-lines span {
  position: absolute;
  top: 0;
  left: 0;
  width: 23px;
  height: 2px;
  background-color: #333333;
}

.navbar .navbar-toggler.actived .menu-lines>span {
  opacity: 0;
}

.navbar .navbar-toggler.actived .menu-lines:before {
  top: 0;
  transform: rotate(-45deg);
}

.navbar .navbar-toggler.actived .menu-lines:after {
  top: 0;
  transform: rotate(45deg);
}

.header-transparent .navbar .navbar-toggler .menu-lines:before,
.header-transparent .navbar .navbar-toggler .menu-lines:after,
.header-transparent .navbar .navbar-toggler .menu-lines span {
  background-color: #ffffff;
}

.navbar-collapse {
  display: flex !important;
  flex-basis: auto;
  flex-grow: 1;
  align-items: center;
  justify-content: flex-end;
}

.navbar-nav {
  display: flex;
  flex-direction: row;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  align-items: center;
}

.navbar-nav.ml-auto {
  margin-left: auto;
}

.navbar .nav__item {
  position: relative;
  margin-right: 27px;
}

.navbar .nav__item:last-child {
  margin-right: 0;
}

.navbar .nav__item .nav__item-link {
  font-size: 14px;
  font-weight: 700;
  text-transform: capitalize;
  display: block;
  position: relative;
  color: #1b1a1a;
  line-height: 100px;
  letter-spacing: 0.4px;
  text-decoration: none;
}

.header-transparent .nav__item .nav__item-link {
  color: #ffffff;
}

/* Normal header için (transparent olmayan) */
.header:not(.header-transparent) .nav__item .nav__item-link {
  color: #1b1a1a;
}

.navbar .nav__item .nav__item-link:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #d42e12;
  transform: scale3d(0, 1, 1);
  transform-origin: 100% 50%;
  transition: transform 2s cubic-bezier(0.2, 1, 0.3, 1);
}

.navbar .nav__item .nav__item-link.active:before,
.navbar .nav__item .nav__item-link:hover:before {
  transform: scale3d(1, 1, 1);
  transform-origin: 0 50%;
}

.navbar .nav__item.with-dropdown {
  position: relative;
}

.navbar .nav__item.with-dropdown {
  position: relative;
}

.navbar .nav__item.with-dropdown .dropdown-toggle {
  position: relative;
  padding-right: 20px;
}

.navbar .dropdown-toggle:after {
  display: none;
}

.navbar .nav__item.with-dropdown i[data-toggle="dropdown"] {
  display: none;
}

.navbar .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  border-radius: 0;
  border: none;
  margin: 0;
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  min-width: 220px;
  padding: 0;
  list-style: none;
}

.navbar .nav__item.with-dropdown:hover > .dropdown-menu {
  display: block;
}

.navbar .dropdown-menu .nav__item {
  padding: 0 40px;
  margin-right: 0;
}

.navbar .dropdown-menu .nav__item:before {
  font-family: "FontAwesome";
  content: "\f105";
  position: absolute;
  top: 0;
  line-height: 40px;
  left: 30px;
  transform: none;
  opacity: 0;
  transition-delay: 0.5s;
  color: #9b9b9b;
  font-size: 10px;
  transition: all 0.7s ease;
}

.navbar .dropdown-menu .nav__item:hover:before {
  opacity: 1;
  left: 40px;
}

.navbar .dropdown-menu .nav__item .nav__item-link {
  color: #9b9b9b;
  text-transform: capitalize;
  font-weight: 400;
  line-height: 40px !important;
  white-space: nowrap;
  position: relative;
  border-bottom: 1px solid #eaeaea;
  transition: all 0.7s ease;
}

.navbar .dropdown-menu .nav__item .nav__item-link:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #d42e12;
  transition: all 0.8s linear;
}

.navbar .dropdown-menu .nav__item .nav__item-link:hover {
  color: #d42e12;
  padding-left: 18px;
}

.navbar .dropdown-menu .nav__item .nav__item-link:hover:after {
  width: 100%;
}

.navbar .dropdown-menu .nav__item:last-child > .nav__item-link {
  border-bottom: none;
}

.navbar .dropdown-menu .nav__item:last-child > .nav__item-link:after {
  display: none;
}

.navbar .dropdown-menu .dropdown-toggle:after {
  right: 0;
}

/* navbar-modules */
.navbar-modules {
  display: flex;
  align-items: center;
  margin-left: auto;
  flex-shrink: 0;
}

.navbar-modules .modules__btns-list {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.navbar-modules .modules__btns-list li {
  margin-left: 20px;
}

.navbar-modules .modules__btns-list li:first-child {
  margin-left: 30px;
}

.module__btn {
  position: relative;
  color: #333333;
  text-decoration: none;
}

.module__btn:hover {
  color: #d42e12;
}

.module__btn-request {
  width: 154px;
  height: 40px;
  line-height: 38px;
  letter-spacing: 0;
  transition: all 0.4s ease;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  border: 2px solid #d42e12;
  background-color: #d42e12;
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  padding: 0;
}

.module__btn-request span {
  margin-right: 7px;
}

.module__btn-request i {
  margin-left: 7px;
  font-size: 12px;
}

.module__btn-request:hover {
  background-color: #1b1a1a;
  border-color: #1b1a1a;
  color: #ffffff;
  transform: translateY(-2px);
}

.header-transparent .module__btn-request:hover {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #1b1a1a;
}

.btn__primary {
  background-color: #d42e12;
  color: #ffffff;
  border: 2px solid #d42e12;
}

.btn__primary:active,
.btn__primary:focus,
.btn__primary:hover {
  background-color: transparent;
  color: #d42e12;
}

.navbar.fixed-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  width: 100%;
  background-color: #ffffff;
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    display: none !important;
    width: 100%;
    margin-top: 1rem;
    flex-basis: 100%;
    flex-grow: 0;
  }
  
  .navbar-collapse.menu-opened {
    display: block !important;
  }
  
  .navbar-nav {
    flex-direction: column;
    width: 100%;
  }
  
  .navbar .nav__item {
    width: 100%;
    margin-right: 0;
  }
  
  .navbar .nav__item .nav__item-link {
    line-height: 50px;
    padding: 0.5rem 0;
  }
  
  .navbar .dropdown-menu {
    position: static;
    float: none;
    width: 100%;
    margin-top: 0;
    border: 0;
    box-shadow: none;
    display: none;
  }
  
  .navbar-modules {
    width: 100%;
    margin-top: 1rem;
  }
  
  .navbar-modules .modules__btns-list {
    width: 100%;
  }
  
  .navbar-modules .modules__btns-list li {
    margin-left: 0;
    width: 100%;
  }
  
  .navbar-modules .modules__btns-list li:first-child {
    margin-left: 0;
  }
  
  .module__btn-request {
    width: 100%;
  }
}

/* Container override kaldırıldı - Bootstrap'in kendi container'ını kullan */


/* Navbar için container düzenlemesi */
body > .container {
  padding-top: 0px;
}

/* Container içindeki sayfa başlığı header'ı - navbar header'ından ayrı */
.container > header,
.container header {
  background: rgba(255, 255, 255, 0.98);
  padding: 20px 30px;
  margin-bottom: 20px;
  border-radius: 12px;
  min-height: 100px; /* Logo için yeterli yükseklik */
}

.container > header h1,
.container header h1 {
  color: #2c3e50;
  font-weight: 600;
  margin: 0;
}

.container > header img.brand-logo,
.container header img.brand-logo,
.product-detail-info img.brand-logo {
  max-width: 200px;
  max-height: 120px;
  width: auto;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}

h1 {
  color: #2c3e50;
  margin-bottom: 10px;
}

.search-bar {
  margin: 20px 0;
  position: relative;
}

.search-bar input {
  width: 100%;
  padding: 12px 40px 12px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 16px;
}

.search-bar input:focus {
  outline: none;
  border-color: #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.search-bar button#clear-search {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
  font-size: 24px;
  padding: 5px 10px;
  line-height: 1;
  transition: color 0.2s;
}

.search-bar button#clear-search:hover {
  color: #333;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
  padding: 0px;
  border-radius: 8px;
}

.brand-card {
  background: rgba(255, 255, 255, 0.98);
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.brand-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  background: rgba(255, 255, 255, 1);
}

.brand-card {
  text-align: center;
}

.brand-logo {
  max-width: 100%;
  height: auto;
  max-height: 80px;
  margin-bottom: 15px;
  object-fit: contain;
}

.brand-card h2 {
  color: #2c3e50;
  margin-bottom: 8px;
  font-size: 18px;
}

.brand-card .count {
  color: #7f8c8d;
  font-size: 14px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.product-card {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.product-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.product-image-wrapper {
  width: 100%;
  background: #ffffff;
  /*border: 1px solid #d0d0d0;*/
  border-radius: 4px;
  padding: 0;
  overflow: hidden;
}

.product-image {
  width: 100%;
  height: 200px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #95a5a6;
  /*border: 1px solid #d0d0d0;*/
  border-radius: 4px;
}

.product-image-img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  display: block;
}

.product-info {
  padding: 15px;
  display: block !important;
  visibility: visible !important;
}

.product-info h3 {
  color: #2c3e50;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.4;
}

.product-meta {
  font-size: 14px;
  color: #7f8c8d;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.product-meta-item {
  display: block;
  margin: 0;
}

.stock-in {
  color: #27ae60;
  font-weight: bold;
}

.stock-out {
  color: #e74c3c;
  font-weight: bold;
}

.back-link {
  display: inline-block;
  margin-bottom: 20px;
  color: #3498db;
  text-decoration: none;
}

.back-link:hover {
  text-decoration: underline;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
  margin: 20px 0;
  padding: 0;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  list-style: none;
  background-color: #f8f9fa;
  border-radius: 0.375rem;
  font-size: 0.875rem;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  display: inline-block;
  padding-right: 0.5rem;
  color: #6c757d;
}

.breadcrumb-item a {
  color: #007bff;
  text-decoration: none;
  transition: color 0.15s ease-in-out;
}

.breadcrumb-item a:hover {
  color: #0056b3;
  text-decoration: underline;
}

.breadcrumb-item.active {
  color: #6c757d;
}

.breadcrumb-item.active::before {
  color: #6c757d;
}

.product-detail {
  position: relative;
  background: rgba(255, 255, 255, 0.98);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 20px;
}

.product-detail-image-wrapper {
  width: 100%;
  background: #ffffff;
  /*border: 1px solid #d0d0d0;*/
  border-radius: 4px;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
}

.product-detail-image-wrapper:hover {
  opacity: 0.95;
}

.product-detail-image {
  width: 100%;
  height: 400px;
  background: #ffffff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #95a5a6;
  border: 2px solid #e0e0e0;
}

.product-detail-image-img {
  width: 100%;
  height: 400px;
  object-fit: contain;
  background: #ffffff;
  display: block;
}

.product-detail-info h1 {
  margin-bottom: 20px;
}

.detail-row {
  margin: 15px 0;
  padding-bottom: 15px;
  border-bottom: 1px solid #ecf0f1;
  display: flex;
  align-items: center;
  gap: 8px;
}

.detail-row:last-child {
  border-bottom: none;
}

.detail-label {
  font-weight: bold;
  color: #2c3e50;
  flex-shrink: 0;
}

.detail-value {
  color: #34495e;
}

.b2b-banner-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  transition: opacity 0.3s;
}

.b2b-banner-img:hover {
  opacity: 0.9;
}

/* Col override kaldırıldı - Bootstrap'in kendi col class'larını kullan */

.related-products-section {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 2px solid #ecf0f1;
}

.related-products-section h2 {
  color: #2c3e50;
  font-size: 24px;
  margin-bottom: 25px;
  font-weight: 600;
}

.related-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .related-products-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

/* Footer Stilleri */
.footer {
  background-color: #161616;
}

.footer-top {
  padding-top: 110px;
  padding-bottom: 63px;
}

.footer__widget-title {
  color: white;
  font-size: 16px;
  text-transform: capitalize;
  line-height: 1;
  margin-bottom: 25px;
}

.footer__widget-about img {
  margin-bottom: 35px;
}

.footer__widget-about p {
  color: #f4f4f4;
  font-size: 14px;
  line-height: 25px;
  margin-bottom: 11px;
}

.footer__widget-about p:first-child {
  font-size: 15px;
}

.footer__widget-newsletter .footer__widget-content {
  background-color: #121212;
  border-radius: 1px;
  padding: 40px 30px;
}

.footer__widget-newsletter .footer__widget-content .footer__widget-title {
  margin-bottom: 11px;
  color: #d42e12;
}

.footer__widget-newsletter .footer__widget-content p {
  color: #f4f4f4;
  margin-bottom: 26px;
}

.widget__newsletter-form {
  position: relative;
}

.widget__newsletter-form .form-control {
  font-size: 13px;
  background-color: transparent;
  border: 1px solid #212121;
}

.widget__newsletter-form .form-control:focus {
  background-color: transparent;
  border-color: #d42e12;
}

.widget__newsletter-form .btn {
  width: 82px;
  height: 30px;
  line-height: 26px;
  border-radius: 1px;
  letter-spacing: 0;
  position: absolute;
  top: 10px;
  right: 10px;
}

.contact-form {
  position: relative;
}

.contact-form .form-group {
  position: relative;
}

.contact-form .form-control {
  font-size: 13px;
  background-color: transparent;
  border: 1px solid #212121;
  color: #f4f4f4;
  padding: 10px 15px;
  width: 100%;
}

.contact-form .form-control:focus {
  background-color: transparent;
  border-color: #d42e12;
  outline: none;
  color: #f4f4f4;
}

.contact-form .btn {
  width: 82px;
  height: 30px;
  line-height: 26px;
  border-radius: 1px;
  letter-spacing: 0;
  position: absolute;
  top: 10px;
  right: 10px;
}

.footer__widget-nav li a,
.footer__copyright-links li a {
  display: block;
  position: relative;
  color: #f4f4f4;
  font-size: 14px;
  line-height: 33px;
}

.footer__widget-nav li a:hover,
.footer__copyright-links li a:hover {
  color: #d42e12;
}

.footer__copyright-links li a {
  margin-right: 14px;
  padding-right: 14px;
  margin-bottom: 3px;
}

.footer__copyright-links li a:after {
  content: "-";
  position: absolute;
  right: 0;
  color: #9b9b9b;
}

.footer__copyright-links li:last-child a:after {
  display: none;
}

.footer__contact-link a {
  position: relative;
  padding-bottom: 1px;
}

.footer__contact-link a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #d42e12;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.footer__contact-link a:hover {
  color: #ffffff;
}

.footer__contact-link a:hover:after {
  background-color: #ffffff;
}

.footer-bottom {
  padding: 30px 0;
  border-top: 2px solid #212121;
}

.footer-bottom .social__icons a {
  color: #9b9b9b;
  font-size: 17px;
}

.footer-bottom .social__icons a:hover {
  color: #ffffff;
}

/* Scroll Top Button */
#scrollTopBtn {
  position: fixed;
  right: 10px;
  bottom: 30px;
  width: 45px;
  height: 45px;
  opacity: 0;
  z-index: 1000;
  font-size: 18px;
  border-radius: 4px;
  border-style: none;
  color: #ffffff;
  background-color: #222222;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#scrollTopBtn:hover {
  background-color: #d42e12;
}

#scrollTopBtn.actived {
  right: 30px;
  opacity: 1;
}

/* Medium Size Screens */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-top {
    padding-top: 70px;
    padding-bottom: 50px;
  }
}

/* Mobile Phones and tablets */
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .footer-top {
    padding-top: 50px;
    padding-bottom: 0;
  }

  .footer__widget {
    margin-bottom: 30px;
  }

  .footer-top .footer__widget-title {
    margin-bottom: 20px;
  }

  .footer-bottom .social__icons {
    margin-top: 20px;
    justify-content: flex-start !important;
  }
}

/* Extra Small Devices */
@media only screen and (min-width: 320px) and (max-width: 575px) {
  .footer-bottom {
    padding: 25px 0;
  }

  .footer__copyright-links {
    margin-bottom: 10px;
  }

  .footer__copyright-links li a {
    font-size: 13px;
    line-height: 20px;
    margin-right: 10px;
    padding-right: 10px;
  }

  .footer__widget-newsletter .footer__widget-content {
    padding: 30px;
  }

  #scrollTopBtn {
    bottom: 20px;
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  #scrollTopBtn.actived {
    right: 20px;
  }
}

@media only screen and (max-width: 400px) {
  .widget__newsletter-form .btn {
    position: static;
    margin-top: 10px;
  }

  .footer__widget-nav li a,
  .footer__copyright-links li a {
    font-size: 13px;
    line-height: 30px;
  }
}

.color-theme {
  color: #d42e12;
}

.mb-30 {
  margin-bottom: 30px !important;
}

/* Eski footer stilleri - kaldırılacak */
.rlr-footer {
  background-color: #161616;
  color: #ffffff;
  padding: 60px 0 0;
  margin-top: 60px;
}

.rlr-footer__menu {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.rlr-footer__menu__col {
  display: flex;
  flex-direction: column;
}

.rlr-footer__menu__col h4 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.rlr-footer__menu__col p {
  color: #ecf0f1;
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 1.6;
}

.rlr-footer__menu__col p i {
  margin-right: 10px;
  width: 20px;
  text-align: center;
}

.rlr-footer__menu__col a {
  color: #ecf0f1;
  text-decoration: none;
  transition: color 0.3s;
}

.rlr-footer__menu__col a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.rlr-footer__menu__col .color-white {
  color: #ffffff !important;
}

.rlr-footer__menu__col .font-weight-bold {
  font-weight: 600;
}

.footer-logo {
  max-width: 200px;
  height: auto;
  margin-bottom: 20px;
}

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

.footerlist li {
  margin-bottom: 10px;
}

.footerlist li a {
  color: #ecf0f1;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s, padding-left 0.3s;
  display: block;
}

.footerlist li a:hover {
  color: #ffffff;
  padding-left: 5px;
  text-decoration: none;
}

.footerlist li a.current-brand {
  color: #ffffff;
  font-weight: 600;
  text-decoration: underline;
}

.rlr-footer__legal {
  background-color: #1a252f;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.rlr-footer__legal__row {
  display: flex;
  justify-content: center;
  align-items: center;
}

.rlr-footer__legal__row__col {
  text-align: center;
}

.rlr-footer__legal__row__col span {
  color: #95a5a6;
  font-size: 14px;
}

@media (max-width: 991.98px) {
  .rlr-footer__menu {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  header {
    padding: 15px;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  header h1 {
    font-size: 20px;
    line-height: 1.4;
  }
  
  .product-detail {
    padding: 15px;
  }
  
  .product-detail-grid {
    grid-template-columns: 1fr;
  }
  
  .brands-grid,
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .related-products-grid {
    grid-template-columns: 1fr;
  }

  .rlr-footer__menu {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .rlr-footer {
    padding: 40px 0 0;
  }
  
  .certificates-section {
    padding: 40px 0 !important;
  }
  
  .certificate-card {
    margin-bottom: 20px;
  }
}

/* Certificate Cards Hover Effects */
.certificate-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
}

.certificate-card:hover .service__overlay,
.certificate-card:hover div[style*="opacity: 0"] {
  opacity: 1 !important;
}

/* Certificate Section Link Hover */
.certificate-card a:hover {
  color: #c01e16 !important;
}

/* Certificate Section Button Hover - sadece background rengini koyulaştır */
.certificates-section .cert-btn:hover {
  background: #c01e16 !important;
}

/* Favori Kalp İkonu Stilleri */
.favorite-heart {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #eee;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
  transition: all 0.3s ease;
  padding: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  pointer-events: auto;
}

.favorite-heart:hover {
  background: rgba(255, 255, 255, 1);
  border-color: #e1251c;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(225, 37, 28, 0.2);
}

.favorite-heart i {
  color: #999;
  font-size: 18px;
  transition: color 0.3s ease;
}

.favorite-heart.active i {
  color: #e1251c;
}

.favorite-heart.active {
  background: rgba(225, 37, 28, 0.1);
  border-color: #e1251c;
}

/* Ürün kartında kalp ikonu */
.product-card {
  position: relative;
}

/* Ürün detay sayfası product-detail kutusunda kalp ikonu */
.product-detail .favorite-heart {
  position: absolute;
  top: 15px;
  right: 15px;
  margin-left: 0;
}

/* Favori sayısı badge */
.favorite-count {
  background: #e1251c;
  color: white;
  border-radius: 12px;
  padding: 2px 8px;
  font-size: 12px;
  font-weight: 600;
  margin-left: 5px;
}

/* Sticky Favoriler Butonu (Sağa Yapışık) */
.favorites-sticky-btn {
  position: fixed;
  right: 20px;
  top: 120px;
  width: 60px;
  height: 60px;
  background: #e1251c;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(225, 37, 28, 0.4);
  z-index: 1000;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 24px;
  cursor: pointer;
}

.favorites-sticky-btn:hover {
  background: #c01e16;
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(225, 37, 28, 0.5);
  color: white;
  text-decoration: none;
}

.favorites-sticky-btn i {
  position: relative;
}

.favorites-sticky-btn .favorite-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #fff;
  color: #e1251c;
  border: 2px solid #e1251c;
  border-radius: 12px;
  padding: 2px 6px;
  font-size: 11px;
  font-weight: 700;
  min-width: 20px;
  text-align: center;
  display: inline-block;
  margin-left: 0;
}

.favorites-sticky-btn .favorite-count[style*="display: none"] {
  display: none !important;
}

/* Mobil için sticky buton */
@media (max-width: 768px) {
  .favorites-sticky-btn {
    width: 56px;
    height: 56px;
    right: 15px;
    top: 100px;
    font-size: 22px;
  }
  
  .favorites-sticky-btn .favorite-count {
    font-size: 10px;
    padding: 1px 5px;
    min-width: 18px;
  }
}

/* Favoriler Sayfası Card Stili */
.favorites-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 40px;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .favorites-card {
    padding: 20px;
    border-radius: 8px;
  }
}

