@charset "UTF-8";
/* Color Text */
/* Color Base */
/* Color Social */
/* Global Variables */
/* Still Variants */
/* Lütfen aşağıdaki değişkenlerin hem isimlerini hemde değerlerini değiştirmeyiniz */
/* Max Media Query */
/* Min Media Query */
/* Border Radius */
/* Box Shadow */
/* İmage Center */
/* İmage Fit */
/* Element Center */
/* İnput Placeholder */
@import url("https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap");
body {
  background: #fafafa;
  font-family: "Urbanist", sans-serif;
  padding-bottom: 59px;
}
body.member-login, body.member-register, body.member-forgot-password, body.member-reset-password {
  background: rgb(255, 242, 237);
}
body.scroll-passive {
  overflow: hidden;
}

a {
  color: #ff4500;
}

.h-100vh {
  height: 100vh;
}

.h-80vh {
  height: 80vh;
  min-height: max-content;
}

header {
  background: #fff;
  box-shadow: 0 0 30px #e1e1e1;
  margin-bottom: 20px;
}
header .header-top .right-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-end;
  font-weight: 600;
}
header .header-top .right-links > li {
  padding-top: 10px;
  padding-left: 15px;
}
header .header-top .right-links > li:not(:last-child) {
  padding-right: 15px;
}
header .header-top .right-links > li > a {
  color: #303030;
  text-decoration: none;
}
@media (max-width: 991px) {
  header .header-top {
    display: none;
  }
}
@media (max-width: 991px) {
  header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: #fff;
    z-index: 2;
    box-shadow: unset;
    border-bottom: 1px solid #cfcfcf;
  }
}
header .header-middle {
  padding-top: 20px;
  padding-bottom: 20px;
}
@media (max-width: 991px) {
  header .header-middle {
    padding: 0;
  }
}
header .header-middle .search {
  position: relative;
  z-index: 3;
}
@media (max-width: 991px) {
  header .header-middle .search {
    display: none;
    margin-bottom: 15px;
  }
  header .header-middle .search.active {
    display: block;
  }
}
header .header-middle .search > .search-input {
  width: 100%;
  border-radius: 10px;
  padding: 10px 15px;
  padding-right: 45px;
  border: 2px solid #e3e3e3;
  background: #ffffff;
  /*&:focus {
      border-color: #ff4500;
  }*/
}
header .header-middle .search > .search-input:focus-visible {
  outline: unset;
}
header .header-middle .search > .search-input::-webkit-search-cancel-button {
  -webkit-appearance: none;
  height: 1em;
  width: 1em;
  border-radius: 50em;
  background: url("/themes/default/assets/images/icons/times.svg") no-repeat 50% 50%;
  background-size: contain;
  opacity: 0;
  pointer-events: none;
}
header .header-middle .search > .search-input:focus::-webkit-search-cancel-button {
  opacity: 1;
  pointer-events: all;
  cursor: pointer;
}
header .header-middle .search > .search-button {
  position: absolute;
  right: 10px;
  height: 100%;
  border-radius: 0 10px 10px 0;
  border: 0;
  background: unset;
}
header .header-middle .search > .search-button > svg > path {
  stroke: #ff4500;
}
header .header-middle .mobile-search-icon {
  color: #303030;
  width: 50px;
  height: 60px;
  line-height: 55px;
  display: block;
  margin: 0 calc(100% - 40px);
  text-decoration: none;
  font-weight: 700;
  text-align: center;
}
header .header-middle .mobile-search-icon > svg > path {
  stroke: #303030;
}
header .header-middle .mobile-search-icon > i {
  font-style: normal !important;
}
header .header-middle .header-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
header .header-middle .header-buttons .btn-account, header .header-middle .header-buttons .btn-basket {
  display: flex;
  gap: 10px;
  width: max-content;
  height: 48px;
  border: 1px solid #ff4500;
  padding: 10px 20px;
  border-radius: 12px;
  text-decoration: none;
  color: #ff4500;
  font-weight: 600;
  font-size: 13px;
  align-items: center;
  justify-content: center;
}
header .header-middle .header-buttons .btn-basket > .cart-item-count {
  background: #ff4500;
  width: 20px;
  height: 20px;
  color: #fff;
  border-radius: 10px;
  text-align: center;
  position: absolute;
  top: -10px;
  right: -10px;
}
header .header-middle .header-buttons .btn-favorite {
  background: #ffffff;
  border: 1px solid #ff4500;
  border-radius: 12px;
  height: 48px;
  width: 48px;
}
@media (max-width: 991px) {
  header .header-bottom {
    display: none;
  }
}
header .logo > img {
  width: 100%;
}
@media (max-width: 991px) {
  header .logo > img {
    width: 100px;
  }
}

#navigation ul:not(.dropdown-menu) {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
}
#navigation ul:not(.dropdown-menu) li {
  margin-right: 20px;
}
#navigation ul:not(.dropdown-menu) li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 10px 0;
  display: block;
}
#navigation ul:not(.dropdown-menu) li a:hover {
  color: #ff4500;
}
#navigation .dropdown-menu .dropdown-menu {
  left: 100%;
  top: 0;
  margin-left: 0.1rem;
}
#navigation .dropdown-menu > li:hover > .dropdown-menu {
  display: block;
}

@media (max-width: 991px) {
  main {
    margin-top: 80px;
  }
}

@media (min-width: 1440px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1400px;
  }
}
footer .footer-top {
  margin-bottom: 30px;
}
footer .footer-top .footer-top-icons {
  display: flex;
}
@media (max-width: 991px) {
  footer .footer-top .footer-top-icons {
    flex-wrap: wrap;
  }
}
footer .footer-top .footer-top-icons > .footer-top-icon {
  display: flex;
  width: 25%;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (max-width: 991px) {
  footer .footer-top .footer-top-icons > .footer-top-icon {
    width: 50%;
  }
}
footer .footer-top .footer-top-icons > .footer-top-icon > i {
  width: 50px;
}
footer .footer-top .footer-top-icons > .footer-top-icon > i > svg {
  width: 100%;
}
footer .footer-top .footer-top-icons > .footer-top-icon > span {
  font-weight: 700;
}
footer .footer-middle .footer-columns {
  display: flex;
  padding: 70px 40px;
  border-radius: 20px;
  background: #ffede7;
  border: 1px solid rgba(224, 126, 34, 0.1098039216);
  box-shadow: 0 0 10px rgba(224, 126, 34, 0.0392156863);
}
@media (max-width: 991px) {
  footer .footer-middle .footer-columns {
    flex-direction: column;
  }
}
footer .footer-middle .footer-columns .footer-column {
  width: 25%;
  padding: 20px;
  border-right: 1px solid rgba(224, 126, 34, 0.1098039216);
}
@media (max-width: 991px) {
  footer .footer-middle .footer-columns .footer-column {
    width: 100%;
    padding: 0;
    border-right: unset;
    margin-bottom: 20px;
  }
}
footer .footer-middle .footer-columns .footer-column:first-child {
  padding-left: 0;
}
footer .footer-middle .footer-columns .footer-column:last-child {
  border: 0;
}
footer .footer-middle .footer-columns .footer-column .logo {
  width: 200px;
}
footer .footer-middle .footer-columns .footer-column .footer-header {
  font-size: 19px;
  font-weight: 600;
}
footer .footer-middle .footer-columns .footer-column .footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 15px;
}
footer .footer-middle .footer-columns .footer-column .footer-list > li {
  margin-bottom: 10px;
}
footer .footer-middle .footer-columns .footer-column .footer-list > li > a {
  text-decoration: none;
  color: #303030;
}
footer .footer-middle .footer-columns .footer-column .footer-list > li > a:hover {
  color: #ff4500;
}
footer .footer-middle .footer-columns .footer-column .footer-phone {
  display: block;
  text-decoration: none;
  color: #303030;
  margin-top: 25px;
  font-size: 30px;
}
footer .footer-bottom {
  padding: 20px 0;
}
footer .footer-social {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 10px;
  margin-top: 10px;
  margin-bottom: 20px;
}
footer .footer-social > li > a {
  display: block;
  width: 40px;
  height: 40px;
  background: #d7d7d7;
  border-radius: 50%;
  text-align: center;
  line-height: 35px;
}
footer .footer-social > li > a > img {
  width: 15px;
  filter: invert(1);
}
footer .footer-social > li > a:hover {
  background: #ff4500;
}
footer .footer-social > li > a:hover > img {
  filter: unset;
}

.mobile-fixed-menu {
  display: none;
}

@media (max-width: 991px) {
  .mobile-fixed-menu {
    display: block;
    position: fixed;
    bottom: 0;
    background: white;
    width: 100%;
    border-top: 1px solid #cfcfcf;
    z-index: 3;
  }
  .mobile-fixed-menu > ul {
    display: flex;
    justify-content: space-between;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .mobile-fixed-menu > ul > li {
    width: 20%;
  }
  .mobile-fixed-menu > ul > li > a {
    position: relative;
    text-decoration: none;
    font-size: 10px;
    font-weight: 400;
    color: #303030;
    padding: 12px;
    padding-top: 10px;
    padding-bottom: 5px;
    text-align: center;
    display: flex;
    flex-direction: column;
  }
  .mobile-fixed-menu > ul > li > a > .cart-item-count {
    position: absolute;
    top: 5px;
    right: 5px;
    background: #ff4500;
    color: #fff;
    min-width: 19px;
    height: 19px;
    line-height: 19px;
    border-radius: 10px;
  }
}
.header-search-result {
  position: absolute;
  top: calc(100% + 10px);
  background: #fff;
  width: 100%;
  padding: 15px;
  border-radius: 10px;
  border: 2px solid #e3e3e3;
}
.header-search-result > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.header-search-result > ul > li:not(:last-child) {
  padding-bottom: 10px;
  border-bottom: 1px solid #ebebeb;
}
.header-search-result > ul > li > a {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: #303030;
}
.header-search-result > ul > li > a .result-product-image {
  position: relative;
  width: 50px;
  height: 60px;
  overflow: hidden;
  border: 1px solid #d5d5d5;
  border-radius: 7px;
}
.header-search-result > ul > li > a img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
}
.header-search-result > ul > li > a.search-goto-all-result {
  display: block;
  width: 100%;
  background: #ff4500;
  text-align: center;
  color: #fff;
  border-radius: 5px;
  padding: 5px 0;
}

.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5411764706);
  width: 100%;
  height: 100%;
  z-index: 1;
}

.account-navigation > .account-navigation-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  line-height: 18px;
  color: #303030;
  margin-bottom: 20px;
  padding: 10px;
  border-radius: 15px;
  background: #fff;
  border: 1px solid #dfdfdf;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1019607843);
}
.account-navigation > .account-navigation-header > i {
  display: block;
  min-width: 50px;
  height: 50px;
  background: rgba(255, 69, 0, 0.2901960784);
  text-align: center;
  line-height: 50px;
  font-style: normal;
  border-radius: 50%;
  font-weight: 700;
  color: #303030;
  font-size: 20px;
}
.account-navigation > .account-navigation-header > span {
  font-weight: 600;
}
.account-navigation > .account-navigation-header > span > small {
  font-weight: 400;
}
.account-navigation > .account-navigation-items {
  display: flex;
  flex-direction: column;
  padding: 20px;
}
.account-navigation > .account-navigation-items > a {
  text-decoration: none;
  color: #484848;
  margin-bottom: 18px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}
.account-navigation > .account-navigation-items > a.active, .account-navigation > .account-navigation-items > a:hover {
  color: #ff4500;
}
.account-navigation > .account-navigation-items > a.active > i > svg, .account-navigation > .account-navigation-items > a:hover > i > svg {
  fill: #ff4500 !important;
}
.account-navigation > .account-navigation-items > a.active > i > svg g[stroke-linecap=round], .account-navigation > .account-navigation-items > a:hover > i > svg g[stroke-linecap=round] {
  stroke: #ff4500;
}

.account-pages-header {
  font-size: 28px;
  line-height: 36px;
  font-weight: 600;
  letter-spacing: 0.33px;
  color: #484848;
  margin-bottom: 25px;
}

.nav-tabs .nav-link {
  margin-bottom: unset;
  border-radius: unset;
  border: unset;
  color: #484848;
  padding: 0 20px;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
  background: transparent;
}
.nav-tabs .nav-item.show .nav-link:after, .nav-tabs .nav-link.active:after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: #ff4500;
  margin-top: 7px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.custom-radio {
  appearance: none;
  -webkit-appearance: none;
  border: 0.2rem solid #fff;
  background-color: #e8e8e8;
  border-radius: 50%;
  width: 15px;
  height: 15px;
  margin-right: 5px;
}
.custom-radio[type=checkbox] {
  border-radius: 3px;
}

.custom-radio:focus-visible {
  outline-offset: 0;
}

.outline-radio {
  outline: 1px solid #999;
}

.outline-radio:hover {
  outline-color: #ff5722;
}

.outline-radio:checked {
  outline-color: #ff5722;
  background-color: #ff5722;
  animation: outline-checked;
  animation-duration: 0.1s;
  animation-iteration-count: 4;
  animation-direction: alternate;
  animation-timing-function: linear;
}

@keyframes outline-checked {
  0% {
    outline-offset: 0;
  }
  100% {
    outline-offset: -0.2rem;
  }
}
label {
  margin-bottom: 5px;
  font-size: 17px;
}

.form-control, .form-select {
  font-size: 18px;
  padding: 12px 20px;
  border-radius: 12px;
}
.form-control:focus, .form-select:focus {
  box-shadow: unset;
  border-color: #ff4500;
}
.form-control.validate-error, .form-select.validate-error {
  border-color: #ec0505;
}

@media (max-width: 991px) {
  .form-select.form-select-sm {
    font-size: 13px;
  }
}

div.validate-error {
  color: #ec0505;
}

.account-page-genders {
  display: flex;
  gap: 30px;
}

.mnk-button {
  border-radius: 12px;
  padding: 10px 20px;
  border: 0;
  background: #ff4500;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
}
@media (max-width: 991px) {
  .mnk-button {
    font-size: 14px;
  }
}
.mnk-button:hover {
  box-shadow: 0 5px 30px rgba(255, 69, 0, 0.2784313725);
}
.mnk-button.light {
  background: #e1e1e1;
  color: #484848;
}
.mnk-button.light:hover {
  box-shadow: 0 5px 30px #e7e7e7;
}

a[data-selector=delete-address] {
  text-decoration: none;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #484848;
}

.address-item {
  border-radius: 12px;
}
.address-item .address-item-header {
  display: flex;
  justify-content: space-between;
  background: #ebebeb;
  padding: 5px 10px;
  border-radius: 7px;
  margin-bottom: 10px;
}

.empty-message {
  padding: 100px 20px;
  text-align: center;
}
.empty-message.empty-message-box {
  border: 1px solid #d9d9d9;
  border-radius: 15px;
  background: #fff;
}
.empty-message .empty-message-icon > svg {
  width: 60px;
  height: 60px;
  stroke: #353535;
  fill: #ff4500;
  opacity: 0.5;
}
.empty-message .empty-message-header {
  font-size: 25px;
  font-weight: 700;
  color: #484848;
}
.empty-message .empty-message-desc {
  margin-bottom: 40px;
}

.cart-header {
  color: #333;
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .cart-header {
    font-size: 19px;
  }
}

.cart-products {
  padding: 20px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid #dfdfdf;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.06);
}

.cart-product-row {
  position: relative;
  display: flex;
}
.cart-product-row:not(:last-child) {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #e7e7e7;
}
.cart-product-row .product-image {
  margin-right: 15px;
}
.cart-product-row .product-image > img {
  border-radius: 10px;
}
.cart-product-row .product-name {
  display: flex;
  font-size: 16px;
  color: #484848;
  font-weight: 600;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cart-product-row .product-name {
    width: 85%;
  }
}
.cart-product-row .product-variant-name {
  font-weight: 600;
  color: #878787;
}
@media (max-width: 991px) {
  .cart-product-row .product-variant-name {
    font-size: 14px;
  }
}
.cart-product-row .product-remove {
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  color: #484848;
  font-weight: 600;
  font-size: 15px;
}
.cart-product-row .product-qty {
  position: relative;
}
.cart-product-row .product-qty > button {
  position: absolute;
  font-size: 20px;
  width: 35px;
  height: 35px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid #ff4500;
  color: #ff4500;
  background: #fff;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 991px) {
  .cart-product-row .product-qty > button {
    width: 25px;
    height: 25px;
    line-height: 20px;
  }
}
.cart-product-row .product-qty > button:first-child {
  left: 5px;
}
.cart-product-row .product-qty > button:last-child {
  right: 5px;
}
.cart-product-row .product-qty > input {
  font-family: sans-serif;
  background: #ffffff;
  text-align: center;
  height: 45px;
  border-radius: 25px;
}
@media (max-width: 991px) {
  .cart-product-row .product-qty > input {
    height: 35px;
  }
}
.cart-product-row .product-prices {
  margin-top: 30px;
}
@media (max-width: 991px) {
  .cart-product-row .product-prices {
    display: flex;
    flex-direction: column;
    margin-top: 0px;
  }
}
.cart-product-row .product-prices > .product-real-price {
  text-decoration: line-through;
  color: #484848;
}
.cart-product-row .product-prices > .product-price {
  font-weight: 700;
  font-size: 18px;
}
@media (max-width: 991px) {
  .cart-product-row .product-prices > .product-price {
    font-weight: 600;
    font-size: 16px;
  }
}

.cart-summary {
  padding: 20px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid #dfdfdf;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.06);
}
.cart-summary .cart-summary-header {
  color: #ff4500;
  font-weight: 600;
}
.cart-summary .cart-price {
  font-size: 2rem;
  font-weight: 700;
}
.cart-summary .cart-detail-row {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
}
.cart-summary .cart-detail-row:not(:last-child) {
  margin-bottom: 7px;
}
.cart-summary .cart-detail-row.cart-discount {
  color: #ed0000;
}
.cart-summary .cart-detail-row.cart-discount > span {
  color: #ed0000;
}
.cart-summary .cart-detail-row > span {
  font-weight: 700;
  color: #484848;
}
.cart-summary .cart-detail-row .cart-cargo-free {
  color: #00c100;
}

@media (max-width: 991px) {
  .cart-complete {
    position: fixed;
    bottom: 55px;
    width: 100%;
    left: 0;
    padding: 10px;
    border-radius: 0;
    display: flex;
    align-items: center;
    z-index: 3;
  }
  .cart-complete > div {
    width: 100%;
    height: max-content;
  }
  .cart-complete > div > .cart-summary-header {
    margin-bottom: 0;
    font-size: 16px;
  }
  .cart-complete > div > .cart-price {
    font-size: 16px;
  }
  .cart-complete > a {
    margin-top: 0 !important;
  }
}

.payment-contracts {
  font-size: 14px;
}

.payment-box {
  padding: 20px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid #dfdfdf;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.06);
}
.payment-box .payment-box-header {
  color: #333;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .payment-box .payment-box-header {
    font-size: 18px;
  }
}
.payment-box .payment-box-body-header {
  font-weight: 600;
  margin-bottom: 10px;
}
.payment-box .payment-scroll-box {
  height: 200px;
  overflow: hidden;
  overflow-y: scroll;
  padding: 20px;
  border: 1px solid #e1e1e1;
  border-radius: 12px;
  background: #f9f9f9;
}

.accordion-button {
  padding-left: 0;
  font-weight: 600;
}
.accordion-button:not(.collapsed) {
  border-radius: 10px !important;
  background: transparent;
  color: #ff4500;
  box-shadow: unset;
}
.accordion-button:before {
  content: "";
  width: 20px;
  height: 20px;
  background: #d5d5d5;
  margin-right: 10px;
  border-radius: 50%;
}
.accordion-button:not(.collapsed):before {
  background: #ff4500;
}
.accordion-button:focus {
  box-shadow: unset;
}
.accordion-button::after {
  all: unset;
}

.accordion-body {
  padding: var(--bs-accordion-body-padding-y) 0;
}

.accordion-flush > .accordion-item {
  border: 0 !important;
}

.payment-transfer-details {
  display: flex;
  gap: 15px;
  align-items: center;
}
@media (max-width: 991px) {
  .payment-transfer-details {
    flex-direction: column;
  }
  .payment-transfer-details > .payment-transfer-detail {
    display: flex;
    flex-direction: column;
  }
}
.payment-transfer-details > .payment-transfer-detail-bank-logo {
  width: 200px;
  padding: 10px;
  border: 2px solid #cfcfcf;
  border-radius: 12px;
}
.payment-transfer-details > .payment-transfer-detail-bank-logo > img {
  width: 100%;
}
.payment-transfer-details > .payment-transfer-detail > .payment-transfer-detail-company-name {
  font-weight: 700;
}
.payment-transfer-details > .payment-transfer-detail > .payment-transfer-detail-company-name > a > svg, .payment-transfer-details > .payment-transfer-detail > .payment-transfer-detail-iban > a > svg {
  width: 30px;
  margin-left: 10px;
  background: #d3d3d3;
  padding: 5px;
  border-radius: 5px;
}

.order-descriptions > .order-header {
  font-size: 30px;
  margin-top: 10px;
}
.order-descriptions > .order-number {
  font-size: 25px;
  font-weight: 800;
  color: #484848;
}

.showcase {
  background: #fff;
  cursor: pointer;
  position: relative;
  padding: 5px;
  margin-bottom: 15px;
  border: 2px solid #f3f3f3;
  border-radius: 15px;
  overflow: hidden;
  transition: border-color 0.08s;
}
.showcase:hover {
  border-color: #ff4500;
}
@media (max-width: 991px) {
  .showcase {
    padding: 5px;
  }
}
.showcase .showcase-image {
  padding-top: 150%;
  position: relative;
}
.showcase .showcase-image > a {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  border-radius: 15px 15px 0 0;
}
.showcase .showcase-image > a img {
  height: 100%;
}
.showcase .showcase-content {
  padding: 20px 10px;
}
.showcase .showcase-content .showcase-title {
  height: 100px;
}
@media (max-width: 991px) {
  .showcase .showcase-content .showcase-title {
    height: 80px;
  }
}
.showcase .showcase-content .showcase-title > a {
  display: -webkit-box; /* çok satırlı ellipsis için gerekli */
  -webkit-box-orient: vertical; /* dikey yönlendirme */
  -webkit-line-clamp: 2; /* maksimum satır sayısı */
  overflow: hidden; /* taşan kısmı gizle */
  text-overflow: ellipsis; /* üç nokta ekle */
  font-size: 16px;
  font-weight: 500;
  color: #484848;
  text-decoration: none;
}
@media (max-width: 991px) {
  .showcase .showcase-content .showcase-title > a {
    font-size: 15px;
    display: inline-block;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
.showcase .showcase-content .showcase-prices {
  display: flex;
  position: absolute;
  bottom: 15px;
  font-size: 17px;
  font-weight: bold;
  color: #484848;
  text-decoration: none;
}
@media (max-width: 991px) {
  .showcase .showcase-content .showcase-prices {
    font-size: 16px;
  }
}
.showcase .showcase-content .showcase-prices .discount-box {
  background: #ff4500;
  margin-right: 10px;
  border-radius: 10px;
  color: #fff;
  width: 50px;
  text-align: center;
  line-height: 45px;
}
@media (max-width: 991px) {
  .showcase .showcase-content .showcase-prices .discount-box {
    line-height: 40px;
  }
}
.showcase .showcase-content .showcase-prices .showcase-price {
  display: flex;
  flex-direction: column;
  line-height: 20px;
}
.showcase .showcase-content .showcase-prices.has-discount {
  color: #ff4500;
}
.showcase .showcase-content .showcase-prices small {
  color: #6f6f6f;
  font-size: 15px;
  text-decoration: line-through;
}

.login-logo {
  display: block;
  margin: 0 auto;
  margin-top: 70px;
  width: 200px;
}
.login-logo > img {
  width: 100%;
}

.login-form {
  padding: 30px;
  background: #fff;
  border-radius: 15px;
  margin-top: 60px;
  border: 2px solid rgba(255, 69, 0, 0.1411764706);
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.0392156863);
}
@media (max-width: 991px) {
  .login-form {
    padding: 20px;
  }
}
.login-form .login-header {
  padding: 30px 0;
  padding-top: 10px;
  font-size: 25px;
  text-align: center;
  font-weight: 700;
  color: #484848;
}

.radio-custom div.validate-error {
  position: absolute;
  bottom: -15px;
}

.product-left .product-image {
  overflow: hidden;
  border-radius: 15px;
  border: 2px solid #f1f1f1;
}
.product-left .product-image-swiper .swiper-slide-thumb-active, .product-left .product-thumb-swiper .swiper-slide-thumb-active {
  border-color: #ff4500;
}
.product-left .product-image-swiper .swiper-button-prev:after, .product-left .product-image-swiper .swiper-button-next:after, .product-left .product-thumb-swiper .swiper-button-prev:after, .product-left .product-thumb-swiper .swiper-button-next:after {
  color: #ff4500;
  font-size: 20px;
  background: #fff;
  padding: 10px;
  border-radius: 7px;
}

.product-right {
  padding: 30px;
  background: rgb(255, 242, 237);
  border: 2px solid rgba(255, 69, 0, 0.1019607843);
  border-radius: 15px;
}
@media (max-width: 991px) {
  .product-right {
    padding: 15px;
  }
}
.product-right .product-name {
  font-size: 25px;
  font-weight: 600;
  padding-bottom: 20px;
  border-bottom: 1px solid #e7e7e7;
}
.product-right .product-prices {
  border-bottom: 1px solid #e7e7e7;
  padding-bottom: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
  font-size: 20px;
  font-weight: bold;
  color: #484848;
  text-decoration: none;
}
@media (max-width: 991px) {
  .product-right .product-prices {
    font-size: 17px;
  }
}
.product-right .product-prices .discount-box {
  background: #ff0000;
  margin-right: 10px;
  border-radius: 10px;
  color: #fff;
  width: 50px;
  text-align: center;
  line-height: 45px;
}
@media (max-width: 991px) {
  .product-right .product-prices .discount-box {
    line-height: 40px;
  }
}
.product-right .product-prices .showcase-price {
  display: flex;
  flex-direction: column;
  line-height: 20px;
}
.product-right .product-prices.has-discount {
  color: #ff4500;
}
.product-right .product-prices small {
  color: #6f6f6f;
  font-size: 15px;
  text-decoration: line-through;
}
.product-right .product-variants {
  border-bottom: 1px solid #e7e7e7;
  padding-bottom: 20px;
  margin-bottom: 15px;
}
.product-right .product-variants > ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 10px;
  margin-bottom: 15px;
}
.product-right .product-variants > ul > li > span {
  padding: 5px 20px;
  border-radius: 10px;
  border: 2px solid #878787;
  display: block;
  cursor: pointer;
  color: #303030;
  font-weight: 600;
}
.product-right .product-variants > ul > li > span.no-stock {
  position: relative;
  border-color: #d7d7d7;
  color: #c9c9c9;
}
.product-right .product-variants > ul > li > span.no-stock:after {
  content: "x";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  text-align: center;
  color: #000;
  font-size: 25px;
}
.product-right .product-variants > ul > li > span.selected {
  background: #ff4500;
  border-color: #ff4500;
  color: #fff;
}
.product-right .product-variants > ul[disabled] > li > span {
  border-color: #c9c9c9;
  color: #c9c9c9;
}
.product-right .product-variants .variant-label {
  font-weight: 600;
  font-size: 18px;
  color: #484848;
}
.product-right .product-buttons {
  display: flex;
  gap: 10px;
}
.product-right .product-buttons .add-to-cart-button-fast {
  width: 100%;
  border: 2px solid #ff4500;
  color: #ff4500;
  background: #f9ece7;
}
.product-right .product-buttons .add-to-cart-button {
  width: 100%;
  padding: 15px;
}
.product-right .product-buttons .add-to-cart-button > i {
  margin-right: 10px;
}
.product-right .product-buttons .add-to-cart-button > i > svg > path {
  fill: #fff;
  stroke: #fff;
}

.category-header {
  display: block;
  color: #484848;
  margin-top: 10px;
  margin-bottom: 30px;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.11;
  text-transform: capitalize;
}
@media (max-width: 991px) {
  .category-header {
    margin-top: 0;
    margin-bottom: 10px;
  }
}

.filter-box {
  background: #fff;
  position: relative;
  padding: 15px;
  border: 1px solid #eaeaea;
  border-radius: 15px;
  transition: border-color 0.08s;
}
.filter-box > .filter-header {
  font-size: 20px;
  font-weight: 500;
  border-bottom: 1px solid #eaeaea;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.filter-box > .filter-body > ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.filter-box > .filter-body > ul > li > a {
  display: block;
  text-decoration: none;
  color: #484848;
  font-weight: 400;
  padding: 5px 0;
}
.filter-box > .filter-body > ul > li > input {
  margin-left: 1px;
}
.filter-box.filter-box-scrolled > .filter-body {
  max-height: 250px;
  overflow-y: scroll;
}

.order-item {
  padding: 10px;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  transition: all 0.25s;
}
.order-item.active {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.0784313725);
  transform: scale(1.01);
}
.order-item .order-item-header {
  cursor: pointer;
}
.order-item .order-item-header .order-header-images img {
  width: 50px;
  border-radius: 5px;
  border: 1px solid #c1c1c1;
}
.order-item .order-item-header .order-number {
  font-weight: 600;
  color: #484848;
}
@media (max-width: 991px) {
  .order-item .order-item-header .order-number {
    font-size: 14px;
  }
}
.order-item .order-item-header .order-number > small {
  font-weight: 400;
}
@media (max-width: 991px) {
  .order-item .order-item-header .order-header-stauts {
    font-size: 14px;
  }
}
.order-item .order-item-header .order-header-summary {
  display: flex;
  padding-right: 20px;
  gap: 55px;
  align-items: center;
  justify-content: flex-end;
}
.order-item .order-item-header .order-header-summary .order-header-end {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.order-item .order-item-header .order-header-summary .order-header-end > .order-header-date {
  font-weight: 600;
  color: #484848;
}
.order-item .order-item-header .order-header-summary .order-header-end > .order-header-total-price {
  font-weight: 600;
  color: #00b700;
}
.order-item .order-item-header .order-header-button button {
  border: 0;
  background: transparent;
}
.order-item .order-item-header .order-header-button button svg {
  width: 20px;
}
.order-item .order-item-body {
  display: none;
}
.order-item.active .order-item-body {
  display: block;
}
.order-item .where-is-my-cargo {
  display: block;
  width: max-content;
  background: #ff4500;
  color: #fff;
  padding: 5px 15px;
  text-decoration: none;
  border-radius: 7px;
}

.mobile-navigation {
  position: fixed;
  top: 100%;
  left: 0;
  background: #fff;
  z-index: 99999999;
  width: 100%;
  height: 100%;
  visibility: hidden;
  transition: all 0.25s;
}
.mobile-navigation.active {
  visibility: visible;
  top: 0;
}
.mobile-navigation .mobile-navigation-header {
  padding: 10px 20px;
  padding-top: 20px;
  font-size: 25px;
  font-weight: 600;
  color: #484848;
  position: relative;
}
.mobile-navigation .mobile-navigation-header > a {
  position: absolute;
  right: 20px;
  font-weight: 200;
  text-decoration: none;
  background: #ff4500;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  color: #fff;
  text-align: center;
  line-height: 40px;
}
.mobile-navigation #mobile-navigation {
  display: block;
  width: 100%;
  padding: 20px;
  overflow-y: auto;
  height: calc(100% - 100px);
}
.mobile-navigation #mobile-navigation .nav-link {
  background: #f3f3f3;
  padding: 10px 20px;
  border-radius: 7px;
  margin-bottom: 10px;
}

.mobile-filter-menu-button {
  font-size: 13px;
  padding: 12px 20px;
  border-radius: 12px;
  border: var(--bs-border-width) solid var(--bs-border-color);
  color: #000;
  text-decoration: none;
  width: 100%;
  display: block;
  background: #fff;
  text-align: center;
}

.w-max {
  width: max-content;
}

.go-home-404 {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 15px;
}
.go-home-404 > i > svg {
  width: 20px;
  stroke: #fff;
}
.go-home-404 > i > svg > path {
  fill: #ff4500;
}

.swiper {
  z-index: 0 !important;
}

.entry-slider .entry-slider-item, .products-slider .entry-slider-item {
  overflow: hidden;
  border-radius: 15px;
}
.entry-slider .entry-slider-item img, .products-slider .entry-slider-item img {
  width: 100%;
}
.entry-slider .swiper-button-prev:after, .entry-slider .swiper-button-next:after, .products-slider .swiper-button-prev:after, .products-slider .swiper-button-next:after {
  color: #ff4500;
  font-size: 20px;
  background: #fff;
  padding: 10px;
  border-radius: 7px;
}
.entry-slider .swiper-pagination-bullet-active, .products-slider .swiper-pagination-bullet-active {
  background: #ff4500;
}
.entry-slider .swiper-pagination, .products-slider .swiper-pagination {
  left: 50% !important;
  width: max-content !important;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 30px;
  padding: 2px 8px;
}

.rounded-15 {
  border-radius: 15px;
}

.products-container {
  padding: 50px;
  border-radius: 30px;
}
@media (max-width: 991px) {
  .products-container {
    padding: 15px;
  }
}
.products-container.blue {
  background: #edf3ff;
}
.products-container.blue > .products-header {
  color: #7e99d1;
}
.products-container.pink {
  background: rgba(255, 0, 92, 0.1019607843);
}
.products-container.pink > .products-header {
  color: #d52363;
}
.products-container.coffee {
  background: #fae7e0;
}
.products-container.coffee > .products-header {
  color: #af6d54;
}
.products-container > .products-header {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .products-container > .products-header {
    text-align: center;
    font-size: 17px;
  }
}

.mobile-categories {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-categories ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-categories ul > li {
  margin-bottom: 10px;
}
.mobile-categories > li {
  margin-bottom: 10px;
}
.mobile-categories > li a {
  position: relative;
  color: #484848;
  text-decoration: none;
  background: #f3f3f3;
  border-radius: 10px;
  display: block;
  width: 100%;
  padding: 10px;
}
.mobile-categories > li a.open-sub-categories > svg {
  width: 14px;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: rotate(-90deg) translateX(50%);
}
.mobile-categories > li a.main-category {
  font-weight: 600;
  border-radius: 0;
  position: relative;
  left: -20px;
  width: calc(100% + 40px);
  padding: 15px 25px;
}
.mobile-categories > li a.go-back {
  background: transparent;
  padding: 0;
  position: relative;
  top: -10px;
}
.mobile-categories > li a.go-back > svg {
  width: 14px;
  transform: rotate(90deg);
}
.mobile-categories > li .sub-categories {
  visibility: hidden;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
  background: #ffffff;
  transition: top 0.25s;
}
.mobile-categories > li .sub-categories.show {
  visibility: visible;
  top: 0;
}

img.lazyload {
  filter: blur(10px);
}

/*# sourceMappingURL=theme.css.map */
