.all-category-btn {
  border: 1px solid var(--border-grey);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 14px;
  color: var(--grey1);
  margin-right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.all-category-btn:hover {
  background: var(--grey1);
  border-color: var(--grey1);
  color: white;
}

.carousel-type-45 {
  margin-top: 0;
  border-radius: 12px;
  overflow: hidden;
}

body.home-body .pattern-group .p-g-mod-showcase .p-g-mod-header {
  border: none;
}
body.home-body .pattern-group .p-g-mod-showcase .p-g-mod-header .p-g-m-h-info {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
body.home-body .pattern-group .p-g-mod-showcase .p-g-mod-header .p-g-m-h-info .p-g-m-h-i-title {
  font-size: 24px;
  position: relative;
}
body.home-body .pattern-group .p-g-mod-showcase .p-g-mod-header .p-g-m-h-info .p-g-m-h-i-title::after {
  content: "";
  width: 30%;
  height: 0.2rem;
  position: absolute;
  right: 0;
  bottom: -0.1rem;
  background-color: #faddda;
  z-index: 1;
}

.card-category {
  background: transparent;
}
.card-category .image {
  position: relative;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.card-category .image:hover svg {
  display: none;
}
.card-category .image a {
  position: relative;
  z-index: 2;
}
.card-category .image a img {
  width: auto !important;
  min-height: auto !important;
}
.card-category .image svg {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.cart-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.card-blog {
  position: relative;
  height: 100%;
  padding: 30px 2rem;
  border-radius: 0.4rem;
  background-color: #fbfbfb;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.card-blog:hover::after {
  opacity: 1;
}
.card-blog::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1rem;
  margin: auto;
  width: 90%;
  border-bottom: 8px solid #b9b9b9;
  border-left: 25px solid rgba(255, 255, 255, 0);
  border-right: 25px solid rgba(255, 255, 255, 0);
  height: 0;
  -webkit-filter: blur(6px);
          filter: blur(6px);
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.card-blog .title {
  height: auto;
  font-size: 14px;
  margin-bottom: 1rem;
}
.card-blog .description {
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 1rem;
}
.card-blog:hover {
  background: #faddda;
}

.footer-company {
  background: #faddda;
  padding: 2rem 0;
}
.footer-company .footer-newsletter .title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
}
.footer-company .footer-newsletter .description {
  font-size: 14px;
  font-weight: 400;
  display: block;
  margin-bottom: 0.5rem;
}
.footer-company .footer-newsletter .newsletter-form {
  border: 1px solid var(--grey1);
  border-radius: 6px;
}
.footer-company .footer-newsletter .newsletter-form input {
  background: transparent;
  border: none;
  font-size: 14px;
  color: var(--grey1);
}
.footer-company .footer-newsletter .newsletter-form input::-webkit-input-placeholder {
  color: var(--grey1);
}
.footer-company .footer-newsletter .newsletter-form input::-moz-placeholder {
  color: var(--grey1);
}
.footer-company .footer-newsletter .newsletter-form input:-ms-input-placeholder {
  color: var(--grey1);
}
.footer-company .footer-newsletter .newsletter-form input::-ms-input-placeholder {
  color: var(--grey1);
}
.footer-company .footer-newsletter .newsletter-form input::placeholder {
  color: var(--grey1);
}
.footer-company .footer-newsletter .newsletter-form input:focus {
  outline: 0;
}
.footer-company .footer-newsletter .newsletter-form button {
  background-color: var(--grey1);
  color: white;
  height: 50px;
  padding-inline: 1rem;
  font-size: 14px;
  font-weight: 500;
}
.footer-company .social-list .title {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 0.5rem;
  display: block;
}
.footer-company .social-list .social-media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
.footer-company .social-list .social-media a {
  font-size: 34px;
  color: var(--grey1);
}

.product-info {
  background: white;
  border: 1px solid var(--border-grey);
  border-radius: 4px;
  position: sticky;
  top: 82px;
  overflow: hidden;
}
.product-info .product-header {
  padding: 0.5rem 1rem;
  background-color: #fbfbfb;
  border-bottom: 1px solid var(--border-grey);
}
.product-info .product-header h1.title {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  gap: 5px;
  margin-bottom: 0;
  padding-bottom: 0;
}
.product-info .product-header h1.title .category a {
  font-size: 12px;
  font-weight: 400;
}
.product-info .product-prices {
  padding: 1rem 1rem;
  border-bottom: 1px solid var(--border-grey);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.product-info .product-prices .left-prices {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.product-info .product-prices .left-prices .title {
  color: var(--grey2);
}
.product-info .product-prices .left-prices .list-price {
  font-size: 20px;
  font-weight: 600;
  color: var(--accent);
}
.product-info .product-prices .right-prices .title {
  color: var(--grey2);
}
.product-info .product-prices .right-prices .sale-price {
  font-size: 20px;
  font-weight: 600;
  color: var(--accent);
}
.product-info .product-havale {
  background-color: #fbfbfb;
}
.product-info .product-havale .left-prices .title {
  color: var(--accent);
  font-weight: 500;
}
.product-info .product-havale .left-prices .eft-price {
  font-size: 20px;
  font-weight: 600;
  color: var(--accent);
}
.product-info .product-havale .right-prices .title {
  color: var(--grey1);
}
.product-info .product-havale .right-prices .gain-price {
  font-size: 15px;
  font-weight: 600;
}

.profil-secenekler {
  padding: 1rem 1rem;
  border-bottom: 1px solid var(--border-grey);
}
.profil-secenekler .title {
  font-size: 13px;
  font-weight: 500;
  color: var(--grey1);
  margin-bottom: 0.5rem;
  display: block;
}
.profil-secenekler ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
}
.profil-secenekler ul li .name {
  color: var(--grey1);
  font-weight: 500;
}
.profil-secenekler ul li .value {
  color: var(--grey2);
}

.profil-varyantlar {
  padding: 1rem 1rem;
  border-bottom: 1px solid var(--border-grey);
  background-color: #fbfbfb;
}

.product-buttons {
  padding: 1rem 1rem;
  border-bottom: 1px solid var(--border-grey);
  background-color: #fbfbfb;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
}
.product-buttons-item {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.product-buttons-item button {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
}
.product-buttons .btn-wp {
  width: 100%;
  margin: 0;
}

.product-etkilesim {
  padding: 1rem 1rem;
}

.category-drop .dropdown-menu {
  display: none;
  position: absolute;
  background: #fff;
  border: 1px solid #ddd;
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 200px;
  z-index: 1001;
  margin-top: 1rem;
}
.category-drop .dropdown-item {
  position: relative;
  padding: 0;
}
.category-drop .dropdown-item > a {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  color: var(--grey1);
  font-size: 13px;
  font-weight: 600;
}
.category-drop .dropdown-item:hover > a {
  background: #f5f5f5;
}
.category-drop .submenu {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
  background: #fff;
  border: 1px solid #ddd;
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 200px;
}
.category-drop .submenu li a {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  color: var(--grey1);
  font-size: 13px;
  font-weight: 500;
}
.category-drop .submenu li a:hover {
  background: #f5f5f5;
}
.category-drop .overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1000;
}

.h-banner {
  padding: 1rem 0;
}