@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}

/* Global utility class - Tailwind replacement */
.hidden {
  display: none !important;
}

a,
a:hover {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.flex-center {
  align-items: center;
}

ul,
li {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Mobile sticky bar için body padding */
@media (max-width: 820px) {
  body {
    padding-bottom: 80px;
  }
}

section {
  padding: 50px 0;
}

/* Content Wrapper START*/
.content-wrapper {
  background-color: #f6c6e2;
  box-shadow: 0 5px 10px -8px var(--color-4);
  padding: 30px 20px;
  margin-top: 15px;
  margin-bottom: 50px;
  border-radius: 5px;
}

.content-wrapper p {
  padding: 5px;
  color: #000;
}

.content-wrapper img {
  max-width: 100%;
  width: auto;
  height: auto;
  display: flex;
  margin-left: auto;
  margin-right: auto;
}

.content-wrapper-title {
  font-weight: 600;
  font-size: 25px;
  padding-bottom: 10px;
  text-align: center;
}

.content-wrapper ul {
  padding: 0 20px 20px 20px;
}

.content-wrapper ul li {
  list-style-type: circle;
}

.content-wrapper h1 {
  font-size: 25px;
}

.content-wrapper h2 {
  font-size: 23px;
  font-weight: 500;
}

.content-wrapper h3 {
  font-size: 21px;
  font-weight: 500;
}
/* Content Wrapper END*/

/* HEADER START */
/* HEADER-TOP START */

.header-top .row {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-right-icons,
.desktop-search-input,
.desktop-logo {
  display: flex;
  align-items: center;
}

.desktop-search-input {
  display: flex;
  align-items: center;
  justify-content: center;
}

.desktop-search-input input {
  position: relative !important;
  width: 100% !important;
  padding: 10px 10px 10px 20px !important;
  border: none !important;
  border-radius: 8px !important;
  box-shadow: var(--color-5) 0px 3px 4px 0px !important;
}

.desktop-search-input input:focus {
  border: none;
  outline: none;
}

.header-right-icons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.header-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.header-icon a {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #f1ab6d;
}

.header-icon i {
  font-size: 30px;
}

.desktop-logo img {
  max-width: 250px;
  width: 100%;
  object-fit: contain;
  max-height: 130px;
}

@media (max-width: 1200px) {
  .header-icon a {
    font-size: 13px;
  }

  .header-icon i {
    font-size: 25px;
  }

  .header-right-icons {
    gap: 15px;
  }

  .desktop-search {
    left: 66%;
  }
}

@media (max-width: 992px) {
  .header-icon a {
    display: flex;
    align-items: center;
    white-space: nowrap;
    gap: 5px;
  }

  .header-right-icons {
    gap: 10px;
  }

  .desktop-search {
    left: 58%;
  }
}

@media (max-width: 820px) {
  .desktop-search-input {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .desktop-search-input input {
    margin-bottom: 0;
    margin-top: 0;
  }
}
/* HEADER-TOP END */

/* HEADER-BOTTOM START */
/* Not: Header menü stilleri style.css dosyasında tanımlıdır */
/* HEADER-BOTTOM END */

/* HEADER-MOBILE START */
.header-mobile {
  display: none;
}

.header-mobile-top {
  background-color: var(--color-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
}

.mobile-logo {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  transform: translateX(30px);
}

.header-mobile-top a {
  color: #fff;
}

.mobile-truck {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-mobile-top ul {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-mobile-center {
  background-color: #fff;
  padding: 5px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-logo img {
  max-width: 200px;
  max-height: 80px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.mobile-basket {
  color: #000;
  font-size: 24px;
}

.header-mobile-bottom {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  position: sticky;
  top: 0;
  z-index: 99;
  background-color: #fff;
}

.header-mobile-bottom .search-area {
  width: 100%;
}

.header-mobile-bottom .search-form {
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
}

.header-mobile-bottom .search-form input {
  width: 100%;
  padding: 12px 45px 12px 15px;
  border: 2px solid #f2ab6d;
  border-radius: 25px;
  font-size: 14px;
  background-color: #fff;
}

.header-mobile-bottom .search-form input:focus {
  outline: none;
  border-color: #e8965a;
}

.header-mobile-bottom .search-form button {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: #f2ab6d;
  border: none;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.header-mobile-bottom .search-form button img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}

.desktop-search-input {
  display: flex;
  align-items: center;
  width: 100%;
}

.mobile-input {
  position: relative;
  width: 100%;
  padding: 10px 15px;
  box-sizing: border-box;
  border: none;
  background-color: #f8f8f8;
  border-radius: 10px;
  margin-bottom: 40px;
}

.mobile-search {
  position: absolute;
  top: 40%;
  left: 85%;
}

.hamburger-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 10px 15px;
  border-radius: 8px;
  text-decoration: none;
}

.hamburger-menu .menu-text {
  color: #333;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.hamburger-menu .hamburger-lines {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 16px;
}

.hamburger-menu .hamburger-lines span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #333;
  border-radius: 2px;
}

@media (max-width: 820px) {
  .header-desktop,
  .header-bottom {
    display: none;
  }

  .header-mobile {
    display: block;
  }

  .header-modal {
    display: none;
  }

  .mobile-search {
    position: absolute;
    top: 40%;
    left: 85%;
  }
}

@media (max-width: 768px) {
  .mobile-search {
    position: absolute;
    top: 40%;
    left: 82%;
  }
}

@media (max-width: 576px) {
  .page-header-list {
    display: flex;
    align-items: center;
  }

  .mobile-search {
    top: 40%;
    left: 77%;
  }
}

@media (max-width: 460px) {
  .mobile-search {
    top: 40%;
    left: 74%;
  }
}

@media (max-width: 395px) {
  .mobile-logo img {
    padding-top: 10px;
    max-width: 200px;
    height: auto;
    width: 100%;
    object-fit: contain;
  }

  .mobile-search {
    top: 40%;
    left: 70%;
  }
}

/* HEADER-MOBILE END */

/* HEADER-MODAL START */
.header-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  opacity: 0;
  transform: translateX(-100%);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
  z-index: 999999999999999;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: scroll;
}

@media (max-width: 992px) {
  .header-modal .container {
    padding-right: 0;
    padding-left: 0;
  }
}

.header-modal.active {
  opacity: 1;
  transform: translateX(0);
}

.modal-icon {
  color: #333;
  display: flex;
  align-items: center;
  gap: 10px;
}

.modal-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 30px 20px 30px;
}

.modal-logo img {
  width: auto;
  height: auto;
  max-width: 200px;
  max-height: 75px;
  object-fit: contain;
}

.modal-search {
  position: absolute;
  left: 85%;
  top: 25px;
}

.modal-icons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #000;
}

.modal-icons a {
  color: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 20px;
}

.modal-icons i {
  color: #333;
  font-size: 30px;
}

.modal-menu {
  padding-bottom: 100px;
}

.modal-menu > ul > li.modal-menu-title {
  margin-bottom: 20px;
}

.modal-menu > ul > li.modal-menu-title > a {
  font-size: 25px;
  font-weight: bold;
  color: #000;
  margin-bottom: 20px;
}

.modal-menu > ul > li:not(.modal-menu-title) {
  padding-bottom: 20px;
}

.modal-menu > ul > li:not(.modal-menu-title) > a {
  font-size: 22px;
  color: #000;
  padding-bottom: 20px;
}

.modal-menu li {
  padding: 8px;
  border-bottom: 1px solid #1c1c1e;
}

.modal-menu li a {
  text-transform: uppercase;
  color: #1c1c1e;
  font-size: 15px;
}

.submenu {
  display: none;
  max-height: 0;
  overflow: scroll;
  background: #f0f0f0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 0 20px;
  margin-top: 10px;
  border-radius: 4px;
  transition: max-height 0.3s ease;
  display: flex;
  flex-wrap: wrap;
}

.modal-menu .submenu li {
  padding: 10px 0;
}

.modal-menu .submenu li a {
  color: #333;
  font-size: 15px;
}

.modal-menu .submenu li a:hover {
  color: #007bff;
}

.modal-menu-title:hover .submenu {
  max-height: 300px;
  padding: 20px;
}

.header-modal-footer {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 20px;
  padding: 20px;
  border-radius: 20px;
  flex-wrap: wrap;
}

.modal-icon-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border-right: 2px solid var(--color-4);
  padding-right: 20px;
}

.modal-contact {
  display: flex;
  align-items: center;
  gap: 20px;
}
/* HEADER-MODAL END */
/* HEADER END */

/* HOME-IMAGES START */
.home-images img {
  width: 100%;
}

.mobile-home-slider img {
  max-width: 100%;
  display: block;
  min-height: 250px;
  object-fit: cover;
}

@media (max-width: 1200px) {
  .left-content-title {
    font-size: 36px;
    line-height: 50px;
    width: 75%;
  }

  .left-content-desc {
    font-size: 22px;
    line-height: 27px;
  }
}

@media (max-width: 1024px) {
  .left-content-title {
    font-size: 30px;
    line-height: 40px;
    width: 75%;
  }

  .left-content-desc {
    font-size: 18px;
    line-height: 27px;
  }
}

@media (max-width: 992px) {
  .left-content-title {
    font-size: 28px;
    line-height: 40px;
    width: 100%;
  }

  .left-content-desc {
    font-size: 13px;
    line-height: 22px;
    width: 100%;
  }
}

@media (max-width: 820px) {
  .left-content {
    display: none;
  }
}
/* HOME-IMAGES END */

/* ICON-SLIDER START */
.icons-slider-section {
  padding: 20px 0;
  overflow: visible;
}

.steps-grid {
  display: flex;
  gap: 15px;
}

.steps-grid .icon-box {
  flex: 1;
  margin-inline: 0;
}

.icon-box {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  padding: 20px 10px;
  margin-inline: 20px;
  border: none;
  border-radius: 8px;
  background-color: #f2ab6d;
  gap: 15px;
  transition: all 0.3s ease;
  width: 100%;
}

@media (max-width: 768px) {
  .steps-grid {
    flex-wrap: wrap;
  }
  .steps-grid .icon-box {
    flex: 1 1 45%;
  }
}

.icon-box:hover {
  background-color: var(--color-3);
  color: #fff;
}

.icon-box:hover i,
.icon-box:hover span,
.icon-box:hover a {
  color: #fff;
}

.icon-box i {
  font-size: 30px;
  color: var(--color-4);
}

.icon-box span,
.icon-box a {
  font-size: 16px;
  color: white;
  text-decoration: none;
}

.icon-box:hover {
  background-color: #f2ab6d;
}

@media (max-width: 1200px) {
  .icon-box span,
  .icon-box a {
    font-size: 14px;
  }
}

@media (max-width: 992px) {
  .icon-box span,
  .icon-box a {
    font-size: 14px;
  }

  .icon-box i {
    font-size: 25px;
  }
}

@media (max-width: 576px) {
  .icon-box {
    gap: 5px;
  }
  .icon-box span,
  .icon-box a {
    font-size: 12px;
  }

  .icon-box i {
    font-size: 20px;
  }
}
/* ICON-SLIDER END */

/* CAMPAIGN START */
.campaign-title {
  font-weight: 300;
  font-size: 50px;
  text-align: center;
  color: var(--color-5);
  padding-bottom: 50px;
}

.compaign-box {
  display: flex;
  min-height: 100%;
}

.img-box {
  width: 100%;
}

.campaign-img {
  min-width: 300px;
  width: 100%;
  max-height: 420px;
  height: auto;
  object-fit: contain;
  position: relative;
}

.campaign-text {
  position: absolute;
  top: 166px;
  left: -106px;
  width: 100%;
  background-color: var(--color-4);
  color: #fff;
  padding: 6px 20px;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  transform: rotate(-45deg);
  transform-origin: left top;
}

.text-box {
  background-color: var(--color-7);
  padding: 10px;
}

@media (min-width: 992px) {
  .text-box {
    background-color: var(--color-7);
    padding: 10px;
    min-width: 500px;
    width: 100%;
  }
}

.text-box-title {
  font-weight: 500;
  font-size: 35px;
  line-height: 42px;
  color: #f2ab6d;
  padding-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.text-box-title img {
  max-width: 75px;
  width: 100%;
}

.text-box-desc {
  color: #f2ab6d;
  font-size: 15px;
  font-weight: 500;
  padding-bottom: 13px;
}

.pro-name {
  font-size: 25px;
  color: #f2ab6d;
  font-weight: 500;
  padding-bottom: 20px;
}

.price-box {
  padding-bottom: 40px;
}

.sold-out {
  padding-bottom: 18px;
  font-size: 20px;
  color: var(--color-5);
}

.new-price {
  font-size: 30px;
  color: black;
  font-weight: 700;
}

.new-price span {
  font-size: 15px;
}

.last-time {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.last-time span {
  background-color: var(--color-1);
  color: #fff;
  padding: 3px 8px;
}

.campaign-btn {
  background-color: var(--color-4);
  color: #fff;
  padding: 5px 20px;
  transition: all 0.3s ease;
}

.campaign-btn:hover {
  background-color: var(--color-1);
  color: #fff;
}


@media (max-width: 1200px) {
  .text-box-title {
    font-size: 20px;
    padding-bottom: 10px;
  }

  .text-box-title img {
    max-width: 40px;
  }

  .text-box-desc {
    font-size: 13px;
    padding-bottom: 10px;
  }

  .last-time {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .last-time span {
    padding: 5px 15px;
    font-size: 10px;
  }

  .pro-name {
    font-size: 17px;
    padding-bottom: 5px;
  }

  .campaign-section {
    padding-top: 0;
    font-size: 12px;
  }

  .campaign-text {
    top: 118px;
    left: -55px;
  }

  .price-box {
    padding-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

@media (max-width: 1024px) {
  .text-box-title {
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 10px;
  }

  .text-box-title img {
    max-width: 40px;
  }

  .text-box-desc {
    font-size: 12px;
    padding-bottom: 13px;
  }

  .last-time {
    display: flex;
    align-items: center;
    gap: 10px;
  }

}

@media (max-width: 992px) {
  .campaign-title {
    font-size: 40px;
  }

  .compaign-box {
    display: flex;
  }

  .img-box,
  .text-box {
    width: 100%;
  }

  .img-box {
    width: 100%;
  }

  .campaign-img {
    width: 100%;
    height: auto;
    display: block;
  }

  .last-time {
    display: flex;
    flex-direction: row;
  }

  .campaign-text {
    top: 42%;
    left: -28%;
  }

  .text-box-title {
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 5px;
  }

  .text-box-title img {
    max-width: 29px;
    margin-right: 0;
  }
}

@media (max-width: 768px) {
  .campaign-title {
    font-size: 30px;
  }

  .text-box {
    padding: 10px 20px;
  }

  .text-box-title {
    font-size: 20px;
    padding-bottom: 15px;
  }

  .text-box-desc {
    font-size: 14px;
    padding-bottom: 15px;
  }

  .pro-name {
    font-size: 20px;
    padding-bottom: 5px;
  }

  .compaign-box {
    display: flex;
    margin-bottom: 30px;
  }
}

@media (max-width: 576px) {
  .compaign-box {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .campaign-title {
    font-size: 22px;
    padding-bottom: 10px;
  }

  @media (max-width: 576px) {
    .compaign-box {
      display: block;
      padding: 10px;
    }

    .img-box,
    .text-box {
      width: 100%;
      margin-bottom: 15px;
    }

    .img-box img {
      width: 100%;
      height: auto;
      object-fit: cover;
    }

    .text-box {
      font-size: 14px;
    }

    .price-box {
      font-size: 16px;
    }

    .campaign-img {
      width: 100%;
      max-width: 200px;
      max-height: 200px;
      height: auto;
      display: block;
      margin-right: auto;
      margin-left: auto;
    }
  }
}

@media (max-width: 375px) {
  .campaign-title {
    font-size: 17px;
  }
}
/* CAMPAIGN END */

.home-products-section {
  padding-top: 50px;
  position: relative;
}

@media (max-width: 768px) {
  .home-products-section {
    padding-top: 10px;
  }
}

/* PRODUCT-BOX START */
.product-image {
  position: relative;
}

.product-image:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  opacity: 0;
  transition: all 0.3s ease;
}

.product-image:before {
  opacity: 1;
}

.product-box {
  position: relative;
  display: block;
  width: 100%;
  border: 1px solid var(--color-8);
  overflow: hidden;
  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
}

.product-image {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
}

.product-image img {
  width: 100%;
  height: auto;
  display: block;
}

.product-image::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.product-box:hover .product-image::before {
  opacity: 1;
}

.pro-content,
.add-to-cart,
.notify-button,
.detail-view {
  position: relative;
  z-index: 2;
}

.pro-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-10);
  padding: 10px 0px 0px 0px;
  background-color: #fff;
  position: relative;
  z-index: 2;
}

.pro-box-title {
  font-weight: 500;
  font-size: 17px;
  text-align: center;
  padding-bottom: 15px;
}

.pro-span {
  padding-bottom: 25px;
}

.price-section {
  display: flex;
  align-items: center;
  gap: 50px;
  padding-bottom: 20px;
}

.new-price {
  font-weight: 300;
  font-size: 24px;
  line-height: 28px;
  color: black;
}

.old-price {
  font-weight: 300;
  font-size: 24px;
  line-height: 28px;
  color: #c4c4c4;
  text-decoration: line-through;
}

.add-to-cart,
.notify-button {
  padding: 15px 0px;
  background: var(--color-3);
  color: white;
  font-weight: 300;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  transition: all 0.4s ease;
  width: 100%;
  opacity: 0;
  border: none;
  transform: translateY(45px);
  bottom: 20px;
  position: absolute;
}

.notify-button:hover {
  color: #fff;
}

.add-to-cart i,
.notify-button i {
  color: white;
}

.product-box:hover .add-to-cart,
.product-box:hover .notify-button {
  bottom: 0px;
  opacity: 1;
  transform: translateY(0px);
}

.detail-view {
  position: absolute;
  left: -100%;
  bottom: 0px;
  color: #fff;
  font-size: 15px;
  padding: 10px;
  background-color: transparent;
  opacity: 0;
  transition: all 0.4s ease;
  display: flex;
  gap: 7px;
  align-items: center;
}

.product-box:hover .detail-view {
  left: 5px;
  opacity: 1;
}

.detail-view i {
  font-size: 10px;
}

.sold-button {
  background-color: var(--color-3);
  color: #fff;
  padding: 10px 30px;
  border-radius: 5px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.sold-button:hover {
  background-color: #fff;
  color: var(--color-3);
}

/* Zil ikonu sadece hover durumunda sallansın */
.sold-button:hover i {
  animation: shake 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* @keyframes shake animasyonu */
@keyframes shake {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(10deg);
  }
  50% {
    transform: rotate(0deg);
  }
  75% {
    transform: rotate(-10deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

/* Satırda 4 ürün varsa */
.discount-text {
  position: absolute;
  top: 4%;
  left: 5%;
  background-color: var(--color-4);
  color: #fff;
  padding: 6px 25px;
  text-align: center;
  font-size: 12px;
  font-weight: bold;
  z-index: 100;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  overflow: hidden;
}

.discount-text:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #fff;
  color: var(--color-4);
  top: -100%;
  left: 0;
  z-index: -1;
  transition: 0.3s;
}

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

.discount-text:hover:before {
  top: 0;
}

.discount-text:hover:after {
  top: 0;
}

.new-product {
  position: absolute;
  top: 6%;
  left: 5%;
  background-color: var(--color-3);
  color: #fff;
  padding: 8px 20px;
  text-align: center;
  font-size: 12px;
  font-weight: bold;
  border-radius: 5px;
  z-index: 100;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  overflow: hidden;
}

.new-product:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #fff;
  color: var(--color-3);
  top: -100%;
  left: 0;
  z-index: -1;
  transition: 0.3s;
}

.new-product:hover {
  color: var(--color-3);
}

.new-product:hover:before {
  top: 0;
}

.new-product:hover:after {
  top: 0;
}

@media (max-width: 1200px) {
  .price-section {
    gap: 20px;
  }

  .old-price,
  .new-price {
    font-size: 18px;
    /* padding-bottom: 5px; */
  }
}

@media (max-width: 460px) {
  .price-section {
    gap: 10px;
  }

  .old-price {
    font-size: 12px;
  }

  .new-product {
    padding: 5px 15px;
    font-size: 8px;
  }

  .discount-text {
    padding: 5px 15px;
    font-size: 10px;
  }
}

/* PRODUCT-BOX END */

/* COMMENT START */
.comment-section {
  position: relative;
  margin-bottom: 100px;
}

.commen-first {
  width: 100%;
  max-width: 500px;
  margin: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 0;
}

.comment-desc {
  font-weight: 300;
  font-size: 24px;
  line-height: 28px;
  text-align: center;
  color: #807373;
  margin-bottom: 10px;
  width: 100%;
  max-width: none;
}

.commen-first img {
  width: 100%;
  height: auto;
  max-width: 90px;
  border-radius: 50%;
  border: 3px solid #fff;
}

.comment-prev,
.comment-next {
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  z-index: 99999;
}

.comment-prev {
  left: 16%;
}

.comment-next {
  right: 16%;
}

.comment-prev i,
.comment-next i {
  font-size: 24px;
  color: #807373;
}


.leaf-01,
.leaf-02,
.leaf-03 {
  position: absolute;
  width: 100px;
  height: auto;
  opacity: 0.7;
}

.leaf-01 {
  position: absolute;
  bottom: -5px;
  left: -5%;
  width: 200px;
}

.leaf-02 {
  top: -50px;
  right: -5%;
  width: 175px;
}

.leaf-03 {
  bottom: -20px;
  right: -5%;
  width: 175px;
}

.area {
  position: relative;
  padding: 30px 0;
  width: 100%;
}

@media (max-width: 1200px) {
  .leaf-01 {
    left: 5%;
  }

  .leaf-02,
  .leaf-03 {
    right: 5%;
  }
}

@media (max-width: 1024px) {
  .leaf-01 {
    left: -3%;
  }

  .leaf-02,
  .leaf-03 {
    right: -2%;
  }
}

@media (max-width: 992px) {
  .leaf-01,
  .leaf-02,
  .leaf-03 {
    display: none;
  }

  .comment-prev,
  .comment-next {
    position: absolute;
    top: 90%;
    transform: translateY(-50%);
    z-index: 99999;
  }

  .comment-prev {
    left: 45%;
  }

  .comment-next {
    right: 45%;
  }
}

@media (max-width: 576px) {
  .comment-section {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
  }

  .comment-prev,
  .comment-next {
    position: absolute;
    top: 90%;
    transform: translateY(-50%);
    z-index: 99999;
  }

  .comment-prev {
    left: 40%;
  }

  .comment-next {
    right: 40%;
  }
}

@media (max-width: 820px) {
}

@media (max-width: 768px) {
}

@media (max-width: 576px) {
  .comment-desc {
    font-size: 15px;
  }
}
/* COMMENT END */

/* DISCOUNTED START */
.discounted-section {
  background-color: var(--color-6);
  padding: 80px 0;
}

.discounted-section .last-row {
  margin-bottom: 30px;
}

.section-title {
  position: relative;
  font-size: 35px;
  color: #1c1c1e;
  text-align: center;
  margin-bottom: 60px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -5px; /* Çizginin başlığa olan mesafesi */
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background-color: #1c1c1e;
}

@media (max-width: 820px) {
  .home-blog-section .section-title {
    margin-bottom: 25px;
  }
}

/* DISCOUNTED END */

/* CTA-AREA START */
.cta-section {
  padding-top: 250px;
  margin-top: -265px;
  background-color: white;
}

.cta-area {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  color: white;
  padding: 70px;
}

.cta-title {
  font-weight: bold;
  font-size: 48px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: solid 2px var(--color-4);
  color: #fff;
}

.cta-title span {
  display: block;
  font-size: 38px;
  font-weight: 400;
}

.cta-btn {
  display: inline;
  border: 1px solid var(--color-4);
  border-radius: 30px;
  padding: 10px 50px;
  color: #fff;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background-color: var(--color-4);
  color: #fff;
}

@media (max-width: 992px) {
  .cta-title {
    font-size: 35px;
    border: none;
  }

  .cta-title span {
    font-size: 28px;
    padding: 25px 0 10px 0;
  }

  .cta-btn {
    font-size: 25px;
  }
}

@media (max-width: 820px) {
  .cta-title {
    font-size: 30px;
    border: none;
  }

  .cta-title span {
    font-size: 23px;
    padding: 25px 0 5px 0;
  }

  .cta-btn {
    font-size: 25px;
  }
}

@media (max-width: 576px) {
  .cta-area {
    padding: 50px 20px;
  }

  .cta-btn {
    font-size: 12px;
    padding: 5px 30px;
  }

  .cta-title {
    font-size: 21px;
    border: none;
    padding-bottom: 10px;
  }

  .cta-title span {
    font-size: 14px;
    padding: 15px 0 0px 0;
  }
}

/* CTA-AREA END */

/* FOOTER START */
/* FOOTER-TOP START */

footer {
  padding: 60px 0 30px 0;
  border-top: 20px solid #f2ab6d;
}

.footer-desc {
  display: block;
  padding-top: 15px;
  color: #333;
}

.footer-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 21px;
  color: #000000;
  padding-bottom: 10px;
  margin-bottom: 10px;
  position: relative;
}

.footer-title::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #f2ab6d;
  position: absolute;
  bottom: 0;
  left: 0;
}

.footer-box {
  padding-bottom: 50px;
}

.footer-box ul li {
  max-width: 300px;
  text-wrap: wrap;
  padding-bottom: 8px;
}

.footer-box ul li a {
  font-size: 15px;
  color: #333;
}

.footer-box ul li a:hover {
  opacity: 0.8;
}

.footer-logo img {
  width: auto;
  height: auto;
  object-fit: cover;
  max-height: 100px;
}

@media (max-width: 992px) {
  .footer-desc {
    padding-bottom: 30px;
  }

  .footer-logo img {
    display: flex;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
  }
}

@media (max-width: 576px) {
  footer {
    padding: 0;
  }

  .footer-desc {
    padding-bottom: 10px;
  }
}
/* FOOTER-TOP END */

/* FOOTER-BOTTOM START */
.footer-bottom .row {
  border-top: 1px solid #c4c4c4;
  padding-top: 20px;
  color: black;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
}

.social {
  color: black;
  border: solid 1px black;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  padding: 8px;
  transition: all 0.3s ease;
}

.social:hover {
  color: #000;
  border-color: #000;
}

.footer-mail {
  display: flex;
  justify-content: flex-end;
  color: #adadb5;
}

@media (max-width: 576px) {
  .footer-bottom {
    padding-bottom: 100px;
  }

  .footer-mail {
    display: flex;
    justify-content: center;
    padding-top: 20px;
  }

  .footer-social {
    display: flex;
    justify-content: center;
    padding-bottom: 20px;
  }
}
/* FOOTER-TOP END */
/* FOOTER END */

/* CATEGORY.PHP START */
.category-section {
  position: relative;
}

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

.page-header {
  padding: 50px 0;
}

.page-title {
  font-size: 25px;
  color: var(--color-3);
  text-align: left;
}

.category-dropdown {
  position: relative;
}

.custom-select-container {
  position: relative;
}

.custom-dropdown {
  position: relative;
  display: flex;
}

.custom-dropdown select {
  background: transparent;
  padding: 10px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  background: transparent;
  cursor: pointer;
}

.selected-option {
  background-color: transparent;
  border: none;
  border-radius: 4px;
  padding: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.arrow-icon {
  margin-left: 10px;
  transition: transform 0.3s ease;
  color: var(--color-4);
}

.arrow-icon.up {
  transform: rotate(180deg); /* Yukarı döndürme */
}

.dropdown-options {
  display: none;
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  right: 0;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 4px;
  z-index: 1000;
  width: 100%;
}

.option {
  padding: 10px;
  cursor: pointer;
  text-decoration: none;
  color: #333;
  display: block;
}

.option:hover {
  background-color: transparent;
}

@media (max-width: 992px) {
  .selected-option {
    font-size: 12px;
  }
}

@media (max-width: 576px) {
  .page-header-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 5px;
  }

  .page-header {
    padding: 20px 0;
  }

  .page-p,
  .category-form {
    width: 100%;
    margin: 5px 0;
  }

  .category-form {
    display: flex;
    justify-content: center; /* Formu ortala */
    width: 100%; /* Formun tam genişlikte olmasını sağla */
  }

  .selected-option {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .page-title {
    font-size: 20px;
    text-align: center;
    margin-bottom: 0;
  }

  .page-p {
    display: none;
  }

  .page-header {
    padding: 5px 0;
  }

  .form-select {
    width: 90%;
    margin: 0;
  }
}
/* CATEGORY.PHP END */

/* PRODUCT START */
.product-title {
  font-size: 26px;
  font-weight: 600;
  padding-bottom: 20px;
  color: black;
  margin: 0;
}

.product-p {
  font-size: 25px;
  font-weight: 600;
  padding-bottom: 20px;
  text-shadow: 2px 4px 6px rgba(0, 0, 0, 0.3);
}

.delivery-location {
  margin: 20px 0;
  position: relative;
  width: 100%;
  box-shadow: 0 5px 10px -8px var(--color-4);
  border: none;
  padding: 10px;
  appearance: none;
}

.delivery-location select {
  padding: 10px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  background: transparent;
  cursor: pointer;
  width: 100%;
  appearance: none;
}

select:focus {
  outline: none;
  box-shadow: 0 0 8px var(--color-4);
}

.single-arrow {
  position: absolute;
  font-size: 25px;
  top: 26%;
  right: 3%;
}

.pro-price-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 5px 10px -8px var(--color-4);
}

.single-price-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.single-new-price {
  display: flex;
  align-items: center;
  gap: 10px;
}

.new-amount {
  font-size: 40px;
  font-weight: 400;
}

.new-span-box {
  display: flex;
  flex-direction: column;
  font-size: 12px;
  font-weight: 500;
}

.single-old-price {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  color: gray;
}

.old-amount {
  font-size: 40px;
  font-weight: 400;
  text-decoration: line-through;
}

.old-span-box {
  display: flex;
  flex-direction: column;
  font-size: 12px;
}

.sold-out-text {
  font-size: 30px;
  font-weight: 500;
  text-decoration: line-through;
  color: gray;
}

.product-btn {
  background-color: var(--color-3);
  color: #fff;
  padding: 15px 50px;
  border-radius: 10px;
  border: 2px solid var(--color-3);
  transition: all 0.3s ease;
  display: inline-block;
}

.product-btn i {
  margin-left: 5px;
  transition: transform 0.3s;
}

.product-btn:hover {
  background-color: #fff;
  color: var(--color-3);
}

.product-btn:hover i {
  transform: translateX(5px);
  color: var(--color-8);
}

.product-icon-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 5px 10px -8px var(--color-4);
  padding: 20px;
  margin-bottom: 25px;
}

.pro-icon-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pro-icon-box:nth-child(2) i {
  font-size: 40px;
  color: var(--color-1);
}

.pro-icon-box:nth-child(3) i {
  font-size: 40px;
}

.flower {
  max-width: 80px;
  width: 100%;
}

.payment-info {
  box-shadow: 0 5px 10px -8px var(--color-4);
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.payment-title {
  font-size: 17px;
  font-weight: 600;
  text-shadow: 2px 4px 6px rgba(0, 0, 0, 0.3);
}

.payment {
  max-width: 300px;
  width: 100%;
  padding-block: 20px;
}

.paymen-info span {
  color: var(--color-1);
}

.pro-comments {
  display: flex;
  flex-direction: column;
  box-shadow: 0 5px 10px -8px var(--color-4);
}

.pro-comment {
  font-size: 17px;
  padding-bottom: 10px;
}

.pro-comment-form input[type="text"],
.pro-comment-form textarea {
  background-color: #fff;
  border-radius: 10px;
  padding: 10px;
  width: 100%;
  box-sizing: border-box;
  border: none;
}

.pro-comment-form textarea {
  resize: vertical;
  border: none;
  margin-block: 2rem;
}

.pro-comment-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.no-stock-message {
  background-color: red;
  color: #fff;
  padding: 10px;
  margin-bottom: 40px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  font-weight: 500;
  font-size: 17px;
}

.no-stock-message:hover {
  background-color: red;
  color: #fff;
}


.overlay-title {
  border-bottom: 1px solid #000;
  padding: 20px 30px 10px 30px;
  font-size: 25px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 20px;
}

.notification-form-body,
.notification-form-bottom {
  padding: 10px 30px;
}

.notification-form-body {
  border-bottom: 1px solid #000;
  z-index: 9999;
}

.notification-form-bottom {
  display: flex;
  justify-content: flex-end;
  gap: 25px;
  padding: 20px;
}

.notification-form-bottom button {
  border: none;
  padding: 10px 25px;
}

.notification-form-bottom button:first-child {
  background-color: #000;
  color: #fff;
}

.notification-form-bottom button:last-child {
  background-color: var(--color-5);
  color: #fff;
}

.form-robo {
  width: 100%;
  object-fit: cover;
}


.pro-desc {
  font-size: 15px;
  padding-bottom: 0px;
  margin: 0;
}

.product-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature-item {
  display: flex;
}

.feature-title {
  min-width: 120px;
  font-weight: bold;
  color: black;
  position: relative;
  padding-right: 5px;
  font-size: 15px;
}

.feature-title::after {
  content: ":";
  position: absolute;
  right: 5px;
}

.feature-item span:last-child {
  padding-left: 3px;
}

.box-right {
  display: flex;
  flex-direction: column;
}

@media (max-width: 1200px) {
  .feature-item {
    flex-direction: column;
    margin-bottom: 15px;
    gap: 5px;
  }
  .product-icon-list {
    padding: 10px;
  }

  .flower {
    max-width: 65px;
  }

  .pro-icon-box:nth-child(2) i {
    font-size: 25px;
    color: var(--color-1);
  }

  .pro-icon-box:nth-child(3) i {
    font-size: 25px;
    color: #f2ab6d;
  }
}

@media (max-width: 992px) {
  .pro-icon-box {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .box-right {
    display: flex;
    flex-direction: row;
    gap: 5px;
    font-size: 12px;
  }

  .flower {
    max-width: 32px;
  }

  .product-btn {
    padding: 10px 25px;
    font-size: 13px;
  }

  .new-amount,
  .old-amount {
    font-size: 25px;
  }

  .new-span-box {
    font-size: 10px;
  }

  select {
    font-size: 12px;
  }

  .payment-info span {
    font-size: 14px;
  }

  .product-p {
    padding: 0 10px 20px 10px;
  }
}

@media (max-width: 820px) {
  .no-stock-message {
    font-size: 12px;
    margin-top: 35px;
  }

  .product-section {
    padding-top: 0;
  }

  .new-amount {
    font-size: 30px;
    font-weight: 600;
  }
}

@media (max-width: 768px) {
  .product-btn {
    font-size: 15px;
  }

  .single-new-price {
    gap: 5px;
  }

  .product-btn {
    padding: 5px 18px;
    font-size: 10px;
    border-radius: 5px;
  }

  .box-right {
    font-size: 12px;
  }

  .pro-icon-box:nth-child(2) i {
    font-size: 20px;
    color: var(--color-1);
  }

  .pro-icon-box:nth-child(3) i {
    font-size: 20px;
  }

  .product-p {
    font-size: 20px;
    padding-block: 10px;
  }

  .content-wrapper {
    margin-bottom: 19px;
  }

  .new-amount {
    font-size: 25px;
    font-weight: 600;
  }
}

@media (max-width: 576px) {
  .pro-comment-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 20px;
  }

  .no-stock-message {
    font-size: 9px;
    margin-bottom: 10px;
    margin-top: 20px;
  }

  .sold-out-text {
    font-size: 20px;
  }

  .product-btn {
    font-size: 15px;
  }
}

/* stars */
.rate {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  height: 40px;
  margin-bottom: 1rem;
}

.rate input {
  display: none;
}

.rate:not(:checked) > label {
  width: 1em;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
  font-size: 30px;
  color: #ccc;
}

.rate:not(:checked) > label:before {
  content: "★ ";
}

.rate > input:checked ~ label {
  color: #ffc700;
}

.rate:not(:checked) > label:hover,
.rate:not(:checked) > label:hover ~ label {
  color: #deb217;
}

.rate > input:checked + label:hover,
.rate > input:checked + label:hover ~ label,
.rate > input:checked ~ label:hover,
.rate > input:checked ~ label:hover ~ label,
.rate > label:hover ~ input:checked ~ label {
  color: #c59b08;
}

.star-color {
  color: #ffc700;
}

.comment-robo {
  width: 300px;
}
/* stars END*/

.similar-pro-container {
  background-color: var(--color-6);
  padding: 50px 0;
}

.similar-pro-container .last-row {
  margin-bottom: 50px;
}

.similar-pro-title {
  font-size: 30px;
  font-weight: 600;
  position: relative;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: 15px;
}

.similar-pro-title::before {
  content: "";
  position: absolute;
  width: 30%;
  padding: 2px;
  background-color: var(--color-8);
  top: -5px;
  left: 35%;
}

.similar-pro-title::after {
  content: "";
  position: absolute;
  width: 30%;
  padding: 2px;
  background-color: var(--color-8);
  bottom: -5px;
  left: 35%;
}
/* PRODUCT END */

/* HOMEBLOGS-SECTION START */
.home-blog-section {
  position: relative;
}

.blog-box {
  display: block;
  padding: 20px;
  background-color: #fef5ed42;
  margin-bottom: 50px;
}

.blog-img {
  width: 100%;
  height: auto;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
}

.blog-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.blog-title {
  font-size: 17px;
  font-weight: 500;
  padding-bottom: 10px;
  color: var(--color-3);
}

.blog-desc {
  padding-bottom: 30px;
  font-size: 14px;
  color: var(--color-3);
}

.blog-btn,
.blog-btn button {
  border: none;
  background-color: #fff;
  border: 2px solid var(--color-8);
  padding: 5px 30px;
  color: var(--color-3);
  display: inline-flex;
  gap: 15px;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease;
  font-size: 14px;
  font-weight: 600;
}

.blog-btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: var(--color-5);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
  z-index: 0;
}

.blog-btn:hover {
  color: #fff;
}

.blog-box:hover .blog-btn:before {
  transform: translateX(0);
}

.blog-btn button {
  border: none;
  z-index: 1;
  background-color: transparent;
}

.custom-prev,
.custom-next {
  position: absolute;
  top: 85%;
  transform: translateY(-50%);
  z-index: 9;
  background-color: var(--color-3);
  padding: 10px 15px;
}

.custom-prev {
  left: 45%;
}

.custom-next {
  right: 44%;
}

.custom-prev i,
.custom-next i {
  font-size: 24px;
  color: #fff;
}

/* Responsive ayarlar */
@media (max-width: 1200px) {
  .custom-prev {
    left: 43%;
  }

  .custom-next {
    right: 43%;
  }

  .blog-title {
    font-size: 16px;
  }
}

@media (max-width: 992px) {
  .custom-prev,
  .custom-next {
    top: 80%;
    font-size: 20px;
  }

  .custom-prev::after,
  .custom-next::after {
    padding: 10px;
  }

  .custom-prev {
    left: 41%;
  }

  .custom-next {
    right: 41%;
  }
}

@media (max-width: 768px) {
  .custom-prev,
  .custom-next {
    top: 85%;
    font-size: 20px;
  }

  .custom-prev {
    left: 42%;
  }

  .custom-next {
    right: 41%;
  }

  .blog-box {
    padding: 10px;
  }

  .blog-desc {
    padding-bottom: 20px;
  }

  .blog-btn {
    padding: 3px 30px;
  }
}

@media (max-width: 576px) {
  .custom-prev,
  .custom-next {
    font-size: 18px;
  }

  .custom-prev::after,
  .custom-next::after {
    padding: 8px;
  }

  .custom-prev {
    left: 37%;
  }

  .custom-next {
    right: 37%;
  }
}

@media (max-width: 430px) {
  .custom-prev,
  .custom-next {
    font-size: 18px;
  }

  .custom-prev::after,
  .custom-next::after {
    padding: 8px;
  }

  .custom-prev {
    left: 35%;
  }

  .custom-next {
    right: 35%;
  }

  .blog-title {
    font-size: 14px;
  }

  .blog-desc {
    font-size: 10px;
  }

  .blog-btn {
    padding: 2px 10px;
    font-size: 13px;
    display: flex;
    gap: 10px;
  }
}

/* HOMEBLOGS-SECTION END */

/* TEMPLATE-BLOGS START */
.blog-section {
  margin-bottom: 150px;
}

.blog-detail-section {
  padding-top: 0;
}

.other-names span {
  color: #000;
  font-weight: bold;
  margin-right: 5px;
}

.blog-detail-box {
  padding: 10px 0;
}

.blog-detail-title {
  color: var(--color-3);
  font-weight: bold;
  font-size: 20px;
}

.aside-title {
  font-size: 22px;
  font-weight: 500;
}

/* TEMPLATE-BLOGS END */

/* ABOUT-US-SECTION START */
.about-us-section {
  padding: 0 0 80px 0;
}

.about-content-wrapper {
  margin-top: 0;
  padding-top: 0;
}

/* ABOUT-US-SECTION END */

/* CONTACT START */
.contact-section {
  padding: 30px 0;
}

.contact-title {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 25px;
  color: var(--color-3);
  position: relative;
}

.contact-title::after {
  content: "";
  width: 10%;
  padding: 1px;
  background-color: #f2ab6d;
  position: absolute;
  bottom: 0;
  left: 10%;
}

.contact-right {
  padding-bottom: 50px;
}

.contact-right ul {
  background-color: #fff;
  padding-block: 5px;
  border-radius: 20px;
}

.contact-right ul li a {
  padding-bottom: 10px;
  font-size: 16px;
  color: #000;
  display: block;
  max-width: 300px;
  white-space: normal;
  word-wrap: break-word;
}

.contact-right ul li a span {
  font-weight: 500;
  font-size: 18px;
  color: var(--color-3);
}

.contact-right ul i {
  font-size: 20px;
}

.contact-icons {
  display: flex;
  gap: 15px;
  padding: 0 20px;
  border-radius: 20px;
}

.contact-icons a {
  color: #adadb5;
  border: solid 1px #adadb5;
  min-width: 30px;
  min-height: 30px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  padding: 5px;
  transition: all 0.3s ease;
}

.contact-icons a:hover {
  color: #000;
  border-color: #000;
}

.contact-icons i {
  font-size: 23px;
}

.contact-page-form,
.contact-location {
  box-shadow: 0 0 10px var(--color-4);
  padding: 30px;
  border-radius: 20px;
  margin: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-form-title,
.contact-location-title {
  font-size: 30px;
  font-weight: 600;
  padding: 5px 0;
}

iframe {
  width: 100%;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 6px 10px;
  border: solid 1px #d4d4d4;
  margin-bottom: 15px;
  border-radius: 2px;
  outline: none;
}

.contact-btn {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: all 0.3s ease;
  margin-bottom: 60px;
}

.contact-btn a {
  background-color: var(--color-1);
  display: inline-flex;
  padding: 10px 40px;
  border-radius: 5px;
  max-width: 150px;
  width: 100%;
  color: #fff;
  text-align: center;
}

.contact-btn a:hover {
  color: var(--color-1);
}

.contact-robo {
  max-width: 200px;
  width: 100%;
  margin-bottom: 15px;
}

.contact-location iframe {
  margin-top: 45px;
}

.checkbox-label {
  padding-bottom: 80px;
}

.checkbox-label a {
  color: var(--color-4);
  font-weight: 500;
}

@media (max-width: 992px) {
  .contact-btn {
    display: flex;
  }

  .contact-title {
    font-size: 23px;
  }

  .contact-left ul li a {
    font-size: 17px;
  }
}

@media (max-width: 576px) {
  .contact-desc {
    font-size: 20px;
  }
}

/* CONTACT END */

/* 404 START */
.not-found-section {
  padding: 80px 0 150px 0;
}

.not-found-section .row {
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.error-text {
  font-size: 100px;
  font-weight: 500;
  color: var(--color-3);
}

.error-desc {
  font-size: 20px;
  text-align: center;
  padding-bottom: 50px;
}

.error-title {
  font-size: 35px;
  font-weight: 500;
  padding-bottom: 15px;
  color: var(--color-3);
}

.error-form input,
.error-form textarea {
  width: 100%;
  padding: 8px 10px;
  border: solid 1px #d4d4d4;
  margin-bottom: 15px;
  border-radius: 2px;
  outline: none;
}

.error-form input:focus {
  border-color: #271721;
}

.btn-404 {
  background-color: var(--color-5);
  color: var(--color-3);
  padding: 15px 30px;
  border-radius: 30px;
  transition: all 0.3s ease;
  margin-bottom: 50px;
}

.btn-404:hover {
  background-color: var(--color-3);
  color: var(--color-5);
}

@media (max-width: 576px) {
  .error-box {
    margin-top: -50px;
  }

  .error-text {
    font-size: 75px;
  }
}
/* 404 END */

.viewed-products-section .discount-text {
  top: -287%;
}

/* WhatsApp START*/
.wp-img {
  color: #fff;
}

.mypage-alo-ph-circle {
  width: 90px;
  height: 90px;
  top: 12px;
  left: 12px;
  position: absolute;
  background-color: transparent;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  border: 2px solid rgba(30, 30, 30, 0.4);
  opacity: 0.1;
  opacity: 0.5;
  animation: zoomIn 1s infinite both;
}

.mypage-alo-ph-circle-fill {
  width: 60px;
  height: 60px;
  top: 28px;
  left: 28px;
  position: absolute;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  border: 2px solid transparent;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  opacity: 0.4 !important;
  animation: pulse 1s infinite both;
}

.mypage-alo-ph-img-circle {
  width: 30px;
  height: 30px;
  top: 43px;
  left: 43px;
  position: absolute;
  background: rgba(30, 30, 30, 0.1)
    url(https://www.google.com/url?sa=i&url=https%3A%2F%2Fwww.inetmar.com%2Fblog%2Fweb-sitesine-whatsapp-butonu-ekleme%2F&psig=AOvVaw24o_fVXdJxPaz-ZYw6fVc_&ust=1728734068863000&source=images&cd=vfe&opi=89978449&ved=0CBQQjRxqFwoTCKi3trKihokDFQAAAAAdAAAAABAE)
    no-repeat center center;
  background-size: 100%;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  opacity: 1;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  -o-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  background-size: 100%;
  animation: tada 1s infinite both;
}

@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

.header .container {
  position: relative;
}

.mypage-alo-phone {
  position: absolute;
  top: -10px;
  right: 0px;
  z-index: 9999999;
}

.mypage-alo-ph-circle {
  border-color: #43b91e;
}

.mypage-alo-ph-circle-fill {
  background-color: #43b91e;
}

.mypage-alo-ph-img-circle {
  background-color: #43b91e;
}

.mypage-alo-phone:hover .mypage-alo-ph-circle {
  border-color: #43b91e;
}

.mypage-alo-phone:hover .mypage-alo-ph-circle-fill {
  background-color: #43b91e;
}

.mypage-alo-phone:hover .mypage-alo-ph-img-circle {
  background-color: #43b91e;
}

.hotlinemp {
  position: fixed;
  right: 139px;
  bottom: 130px;
  z-index: 9999;
}

@media (max-width: 992px) {
  .hotlinemp {
    display: none;
  }
}
/* WHATSAPP END*/

/* FOOTER-STICKY START*/
.footer-sticky-bar {
  display: none;
  position: fixed !important;
  bottom: 0 !important;
  top: auto !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  padding: 15px 5px;
  padding-bottom: calc(15px + env(safe-area-inset-bottom, 0px));
  background: #f2ab6d;
  z-index: 9999 !important;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 820px) {
  .footer-sticky-bar {
    display: block !important;
  }
}

.footer-sticky-bar .sticky-area {
  display: flex;
  align-items: center;
}

.footer-sticky-bar .sticky-area .sticky-box {
  width: 20%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
}

.footer-sticky-bar .sticky-area .sticky-box .sticky-title {
  font-size: 12px;
  font-weight: 500;
  color: white;
}

.footer-sticky-bar .sticky-area .sticky-box a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.footer-sticky-bar .sticky-area .sticky-box a i {
  font-size: 22px;
  color: white;
}

.footer-sticky-bar .sticky-area .sticky-box svg {
  margin-bottom: 4px;
  width: 24px;
  height: 24px;
}

.sticky-box i {
  color: var(--color-6);
}
/* FOOTER-STICKY END*/

.product-img-area {
  position: relative;
}

.product-img-area::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  transition: all 0.3s ease;
  opacity: 0;
}

.product-box:hover .product-img-area::before {
  opacity: 1;
}

/* FOOTER STICKY SEARCH START */
.footer-search-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease,
    visibility 0.4s ease;
}

.footer-search-modal {
  display: none;
}

.footer-search-modal.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
  z-index: 9999999999999999999999999999999999999;
}

.footer-search-modal.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.footer-modal-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  text-align: center;
  overflow-y: hidden;
  overflow-x: hidden;
  overflow: hidden;
}

.footer-close {
  align-self: flex-end;
  margin-bottom: auto;
}

.footer-close i {
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  padding: 0px;
}

.footer-text {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 20px;
  color: white;
}

.footer-form {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
}

.footer-form input[type="text"] {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
  min-width: 300px;
}

.footer-search-icon {
  position: absolute;
  left: 87%;
  color: var(--color-3);
}
/* FOOTER STICKY SEARCH END */

.breadcrumbs {
  background-color: #f8f8f8;
  padding: 15px 0;
  font-size: 14px;
}

.breadcrumbs ul {
  display: flex;
  align-items: center;
}

.breadcrumbs ul li a {
  color: #929da8;
  text-decoration: none;
  font-weight: 600;
  padding-right: 10px;
}

.breadcrumbs ul li a::before {
  content: ">";
  padding-right: 5px;
  margin-right: 8px;
}

.breadcrumbs ul li:first-child a::before {
  content: none;
}

.breadcrumbs ul li:last-child {
  font-weight: 700;
  color: #929da8;
}

@media (max-width: 576px) {
  .breadcrumbs ul {
    padding-inline: 10px;
  }

  .breadcrumbs ul li a {
    font-size: 9px;
  }
}

/* Arka plan overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: none;
}

/* Görünürlüğü kontrol eden sınıf */
.visible {
  display: block;
}

/* Bildirim formu */
.notification-form {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid #ccc;
  background-color: white;
  z-index: 1000;
  display: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  width: 35%;
  padding: 20px;
  border-radius: 8px;
}

/* Çarpı butonu */
.close-button {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
  color: #fff;
  background-color: red;
  padding: 10px 25px;
}

.notification-form input {
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  margin-bottom: 10px;
}

.notification-form button {
  padding: 10px 20px;
  cursor: pointer;
}

.category-section .last-row > div {
  margin-bottom: 50px;
}

.compaign-box .img-box img {
  min-width: 100%;
  min-height: 100%;
}

section.products-month {
  margin-bottom: -50px;
}

.right-list .menu-list li i {
  display: none;
}

.breadcrumb-area {
  padding: 0;
}

.breadcrumbs {
  background-color: inherit;
  padding: 0px;
}

.head-area {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.head-area h1 {
  margin: 0;
}

.list-head {
  padding: 10px 0px;
  color: #000;
  background-color: #fff;
}

.product-box {
  margin-bottom: 30px;
}

section.products {
  padding: 0px 0px;
}

.products {
  margin-bottom: 90px;
}

.easy-autocomplete.eac-square {
  width: 100% !important;
}

.desktop-search {
  position: relative;
  right: 35px !important;
}

.easy-autocomplete.eac-square input {
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
}

img.steps-img {
  max-width: 40px;
}

.icon-box:hover .steps-img:nth-child(1) {
  display: none;
}
.icon-box .steps-img:nth-child(2) {
  display: none;
}

.icon-box:hover .steps-img:nth-child(2) {
  display: block;
}

.footer-box li i {
  display: none;
}

.signature-img {
  max-width: 130px;
}

.signature-area {
  display: flex;
  justify-content: center;
}

.footer-bottom-text {
  display: flex;
  justify-content: center;
  text-align: center;
}

.header-mobile-bottom {
  display: none;
}
@media (max-width: 992px) {
  .box.login-form {
    margin-bottom: 85px;
  }
  .home-images img {
    width: 100%;
    border-radius: 0 !important;
    padding: 10px;
  }
  .footer-search-modal #headerProductSearchBox {
    min-width: 314px;
  }
  .header-mobile-bottom {
    display: flex;
  }

  .header-mobile-bottom .search-area {
    width: 100%;
    box-shadow: none;
    border-radius: 9px;
  }

  .header-mobile-bottom .search-area .input-text {
    background: #f8f8f8;
  }

  form.search-form {
    display: flex;
    align-items: center;
    padding: 0px 10px;
  }
  .easy-autocomplete.eac-square input {
    border: none;
  }
  .header-mobile-bottom {
    padding: 10px 20px;
  }
  .easy-autocomplete input {
    box-shadow: none !important;
  }
}

.product-desc {
  padding: 20px;
}

.box.order-area.order-create.mobile-order-1 {
  background: none !important;
  box-shadow: none !important;
}

.order-now-title {
  font-size: 22px;
  font-weight: 500;
  margin: 20px 0px;
  color: black;
}

.modal-menu .submenu li i {
  display: none;
}

.footer-modal-content .search-img {
  position: absolute;
  right: 5%;
}

body.modal-active {
  overflow: hidden; /* Kaydırmayı tamamen devre dışı bırakır */
}

@media (max-width: 992px) {
  .list-head .dropdown {
    float: none;
    text-align: center;
    display: flex;
    align-items: center;
    margin: 0px;
  }

  .head-area .count {
    display: none;
  }

  .custom-prev,
  .custom-next {
    top: 100%;
  }
}

section.blog-detail-page {
  padding: 0;
}

.home-blog-section {
  position: relative;
  padding: 0;
}

.detail-center {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (min-width: 992px) {
  .detail-list-title {
    padding: 30px 0px 0px 0px;
  }
}

section.seo-text {
  margin-top: -146px;
}

.home-blog-section {
  position: relative;
  padding: 0;
  margin-bottom: 80px;
  margin-top: 70px;
}

section.standart.p80 {
  padding: 0;
}

section.breadcrumb-area {
  margin: 0;
  padding: 0;
  background: inherit;
  border: none;
}

.breadcrumbs .breadcrumb {
  padding: 0;
}

section.blog-detail-page {
  padding: 30px 0px;
}

.breadss {
  padding: 20px 0px;
}

.bread-product {
  padding: 20px 0px 30px 0px;
}

.modal-menu li i:not(:nth-of-type(1)) {
  display: none;
}

.submenu {
  display: block !important;
}

.number {
  position: absolute;
  background-color: black;
  color: white;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  top: 8px;
  right: 0px;
}

.header-right-icons,
.header-icon {
  position: relative;
}

.contact-box {
  color: black;
  height: 250px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.contact-box-title {
  font-size: 22px;
  margin: 10px 0;
  font-weight: bold;
}
.contact-box i {
  font-size: 32px;
  color: #f2ab6d;
}

@media (max-width: 992px) {
  .contact-box {
    color: black;
    height: 148px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    font-size: 12px;
    padding: 3px;
  }
}

@media (min-width: 992px) {
  .contact-bottom-form-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.submit-btns {
  background: #f2ab6d;
  padding: 15px 60px;
  border-radius: 7px;
  color: white;
  transition: all 0.3s ease;
  border: 2px solid #f2ab6d;
}

.submit-btns:hover {
  background: transparent;
  color: #f2ab6d;
}

@media (max-width: 992px) {
  .contact-bottom-form-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }

  .icon-box * {
    font-size: 12px;
  }
  .footer-bottom .row {
    gap: 10px;
  }
  .price .order-button {
    background: #f2ab6d !important;
    color: #fff !important;
    font-size: 17px !important;
    border-radius: 5px !important;
    padding: 19px 40px !important;
    min-width: 169px !important;
    margin-left: 0 !important;
    position: relative !important;
    border: none !important;
    outline: none !important;
    display: flex !important;
    cursor: pointer !important;
    align-items: center !important;
  }
}

.contact-form input,
.contact-form textarea {
  border-radius: 5px;
}

.pro-icon-box i {
  font-size: 40px;
  color: var(--color-1);
}

@media (max-width: 992px) {
  .pro-icon-box i {
    font-size: 20px;
  }
}

.product-image-container {
  position: relative;
  width: 100%;
  /* Görsel boyutuna göre ayarlanabilir */
  overflow: hidden;
  /* İkinci görsel dışarı taşmasın */
}

.product-image-container img {
  display: block;
  width: 100%;
  /* Görsellerin tam oturması için */
  transition: opacity 0.5s ease-in-out;
}

.product-image-container .hover-image {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  /* İlk başta görünmez */
  transition: opacity 0.5s ease-in-out;
  /* Geçiş animasyonu */
}

.product-image-container:hover .hover-image {
  opacity: 1;
  /* Hover sırasında görünecek */
}

.product-image-container:hover .product-image {
  opacity: 0;
  /* Hover sırasında ana görsel gizlenecek */
}

/* Eğer hover-image yoksa hover animasyonlarını devre dışı bırak */
.product-image-container:not(:has(.hover-image)):hover .product-image {
  opacity: 1;
  /* İlk görsel görünmeye devam edecek */
}

.product-image-container:not(:has(.hover-image)):hover .hover-image {
  opacity: 0;
  /* Hover sırasında hover-image etkilenmeyecek */
}


span.all-products {
  color: white !important;
  background: #f2ab6d;
}

span.all-products:hover {
  color: white !important;
  background-color: #f2ab6d !important;
}

/* ========================================
   MARS-CROPS CUSTOM GRID SYSTEM
   Bootstrap'tan bağımsız grid sistemi
======================================== */

/* Container */
.mc-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
}

/* Grid System */
.mc-grid {
  display: grid;
  gap: 20px;
}

.mc-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.mc-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.mc-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.mc-grid-5 {
  grid-template-columns: repeat(5, 1fr);
}

.mc-grid-6 {
  grid-template-columns: repeat(6, 1fr);
}

/* Flex Row (Bootstrap row alternatifi) */
.mc-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.mc-row > * {
  padding: 0 15px;
  box-sizing: border-box;
}

/* Column System */
.mc-col-1 {
  width: 8.333333%;
}
.mc-col-2 {
  width: 16.666667%;
}
.mc-col-3 {
  width: 25%;
}
.mc-col-4 {
  width: 33.333333%;
}
.mc-col-5 {
  width: 41.666667%;
}
.mc-col-6 {
  width: 50%;
}
.mc-col-7 {
  width: 58.333333%;
}
.mc-col-8 {
  width: 66.666667%;
}
.mc-col-9 {
  width: 75%;
}
.mc-col-10 {
  width: 83.333333%;
}
.mc-col-11 {
  width: 91.666667%;
}
.mc-col-12 {
  width: 100%;
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
  .mc-grid-4 {
    grid-template-columns: repeat(3, 1fr);
  }
  .mc-grid-5 {
    grid-template-columns: repeat(4, 1fr);
  }
  .mc-grid-6 {
    grid-template-columns: repeat(4, 1fr);
  }

  .mc-col-lg-3 {
    width: 25%;
  }
  .mc-col-lg-4 {
    width: 33.333333%;
  }
  .mc-col-lg-6 {
    width: 50%;
  }
}

@media (max-width: 992px) {
  .mc-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc-grid-5 {
    grid-template-columns: repeat(3, 1fr);
  }
  .mc-grid-6 {
    grid-template-columns: repeat(3, 1fr);
  }

  .mc-col-md-4 {
    width: 33.333333%;
  }
  .mc-col-md-6 {
    width: 50%;
  }
  .mc-col-md-12 {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .mc-grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc-grid-5 {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc-grid-6 {
    grid-template-columns: repeat(2, 1fr);
  }

  .mc-col-sm-6 {
    width: 50%;
  }
  .mc-col-sm-12 {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .mc-grid-2,
  .mc-grid-3,
  .mc-grid-4,
  .mc-grid-5,
  .mc-grid-6 {
    grid-template-columns: 1fr;
  }

  .mc-col-xs-6 {
    width: 50%;
  }
  .mc-col-xs-12 {
    width: 100%;
  }
}

/* ========================================
   HERO SLIDER TEMA OVERRIDE
   Yapısal CSS → Vite bundle (app.css)
   Burada sadece görsel özelleştirmeler var
======================================== */
.hero-slider-prev,
.hero-slider-next {
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
}

.hero-slider-prev:hover,
.hero-slider-next:hover {
  background: rgba(0, 0, 0, 0.8);
}

.hero-slider-pagination {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
}

/* Slider section - tam genişlik */
.home-slider-section {
  width: 100%;
  padding: 30px 0 0 0;
  margin: 0;
}

.home-slider-section .container-fluid {
  padding: 0;
  max-width: 100%;
}

.home-slider-section .hero-slider-container {
  margin: 0;
}

/* Mobile slider section */
.mobile-home-slider {
  display: none;
}

.mobile-home-slider .container {
  padding: 0;
  max-width: 100%;
}

@media (max-width: 992px) {
  .home-slider-section {
    display: none;
  }

  .mobile-home-slider {
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
  }

  .mobile-home-slider .container-fluid {
    padding: 0;
  }
}

/* Home image */
.home-img {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

/* ========================================
   PRODUCT DETAIL PAGE
======================================== */

.product-detail {
  margin-top: 20px;
}

/* Sağ kısım - ürün bilgileri alanı */
.product-detail-box {
  padding: 20px 0;
}

.product-detail-box .product-desc {
  padding-bottom: 20px;
}

.product-detail-box .product-title {
  margin-bottom: 15px;
}

/* Ürün açıklaması paragrafları */
.product-detail-box .box-product-desc p,
.product-detail-box .pro-desc p,
.content-wrapper p {
  margin-bottom: 0px;
  line-height: 1.7;
}

.product-detail-box .box-product-desc p:last-child,
.product-detail-box .pro-desc p:last-child,
.content-wrapper p:last-child {
  margin-bottom: 0;
}

/* Ürün özellikleri listesi */
.product-features {
  padding-top: 15px;
  margin-top: 15px;
  border-top: 1px solid #eee;
}

.product-features .feature-item {
  padding: 8px 0;
}

/* Sipariş alanı */
.order-area {
  padding: 20px 0;
  margin-top: 15px;
}

/* Ürün ikon listesi */
.product-icon-list {
  padding: 20px 0;
  margin-top: 15px;
  border-top: 1px solid #eee;
}

/* Ödeme bilgisi */
.payment-info {
  padding: 20px 0;
  margin-top: 15px;
  border-top: 1px solid #eee;
}

/* Ürün detayları (care_content) */
.box-padding {
  padding: 25px;
}

.box-padding p {
  margin-bottom: 15px;
  line-height: 1.7;
}

.box-padding p:last-child {
  margin-bottom: 0;
}

/* ========================================
   LOCATION SELECTOR
======================================== */
.location-search {
  position: relative;
  width: 100%;
}

.location-search .search {
  position: relative;
  display: flex;
  align-items: center;
}

.location-search .search > i {
  position: absolute;
  left: 15px;
  color: #888;
  pointer-events: none;
}

.location-input {
  width: 100%;
  padding: 12px 40px 12px 45px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.location-input:focus {
  outline: none;
  border-color: var(--color-4, #f2ab6d);
}

.location-input::placeholder {
  color: #999;
}

.location-clear {
  position: absolute;
  right: 10px;
  background: none;
  border: none;
  font-size: 20px;
  color: #888;
  cursor: pointer;
  padding: 5px;
  line-height: 1;
}

.location-clear:hover {
  color: #333;
}

.location-clear.hidden {
  display: none;
}

.location-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-top: none;
  border-radius: 0 0 8px 8px;
  max-height: 250px;
  overflow-y: auto;
  z-index: 100;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.location-results.hidden {
  display: none;
}

.location-search {
  margin-bottom: 20px;
}

.location-results li {
  padding: 12px 15px;
  cursor: pointer;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.2s ease;
}

.location-results li:last-child {
  border-bottom: none;
}

.location-results li:hover,
.location-results li.highlighted {
  background: #f8f8f8;
}

.location-results li.no-result {
  color: #888;
  cursor: default;
  text-align: center;
}

.location-results li.no-result:hover {
  background: none;
}

.loading-dates {
  padding: 15px;
  text-align: center;
  color: #888;
}

.error-dates {
  padding: 15px;
  text-align: center;
  color: #dc3545;
}

/* ========================================
   DELIVERY DATES (Product Page)
======================================== */
.product-detail .order-create .form .dates ul,
#order-dates ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-detail .order-create .form .dates ul li,
#order-dates ul li {
  list-style: none;
  padding: 0;
  margin: 0 !important;
  float: none !important;
  flex-shrink: 0;
}

/* Has-special class için 5 kutu */
.product-detail .order-create .form .dates ul.has-special li,
#order-dates ul.has-special li {
  width: calc(20% - 8px);
}

/* Normal 4 kutu */
.product-detail .order-create .form .dates ul:not(.has-special) li,
#order-dates ul:not(.has-special) li {
  width: calc(25% - 8px);
}

@media (max-width: 991px) {
  .product-detail .order-create .form .dates ul li,
  .product-detail .order-create .form .dates ul.has-special li,
  #order-dates ul li,
  #order-dates ul.has-special li {
    width: calc(50% - 5px);
  }
}

@media (max-width: 480px) {
  .product-detail .order-create .form .dates ul li,
  .product-detail .order-create .form .dates ul.has-special li,
  #order-dates ul li,
  #order-dates ul.has-special li {
    width: 100%;
  }
}

/* Tarih kutuları label stilleri */
#order-dates ul li label {
  display: block;
  width: 100%;
  height: 80px;
  border: 1px solid #ebebeb;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-align: center;
  font-size: 14px;
  line-height: 26px;
  padding: 10px 0 0;
  margin: 0;
  background: #fff;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

#order-dates ul li label:hover {
  border-color: var(--color-4, #f2ab6d);
}

#order-dates ul li label.selected {
  color: #fff;
  background: var(--color-4, #f2ab6d);
  border-color: var(--color-4, #f2ab6d);
}

#order-dates ul li label strong {
  font-weight: 500;
  font-size: 16px;
  display: block;
}

#order-dates ul li label i {
  font-size: 26px;
}

#order-dates ul li input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

#order-dates ul li input:disabled + label {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Takvim kutusu */
#order-dates ul li label.date-selector {
  padding-top: 15px;
}

#order-dates ul li label.date-selector.date-selected {
  padding: 14px 10px 0;
  line-height: 20px;
}

/* Datepicker gizle */
#order-dates .datepicker {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* Özel gün stili */
#order-dates ul li.special-day label {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a5a 100%);
  color: #fff;
  border-color: #ee5a5a;
}

#order-dates ul li.special-day label i {
  color: #fff;
}

/* ========================================
   DELIVERY TIME SELECTOR
======================================== */
.deliveryTimes {
  margin-top: 20px;
}

.deliveryTimes .form-group {
  margin-bottom: 15px;
}

.time-selector {
  position: relative;
  display: flex;
  align-items: center;
}

.time-selector > i {
  position: absolute;
  left: 15px;
  color: #888;
  font-size: 18px;
  pointer-events: none;
  z-index: 1;
}

.time-selector select,
.time-selector .form-control,
#deliveryTime {
  width: 100%;
  padding: 14px 15px 14px 45px;
  border: 2px solid var(--color-4, #f2ab6d);
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  color: #333;
  background: #fff;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.time-selector select:hover,
.time-selector .form-control:hover,
#deliveryTime:hover {
  border-color: var(--color-3, #333);
}

.time-selector select:focus,
.time-selector .form-control:focus,
#deliveryTime:focus {
  outline: none;
  border-color: var(--color-4, #f2ab6d);
  box-shadow: 0 0 0 3px rgba(242, 171, 109, 0.2);
}

/* Special times */
.specialTimes {
  margin-top: 15px;
  padding: 15px;
  background: #fff9f5;
  border-radius: 10px;
  border: 1px solid #ffe0c7;
}

.specialTimes .time-selector select {
  border-color: #ffb380;
}

/* ========================================
   LOGIN PANEL (Slide-in from right)
======================================== */
.login-panel {
  position: fixed;
  top: 0;
  right: -420px;
  width: 400px;
  max-width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 10000;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  visibility: hidden;
}

.login-panel.active {
  right: 0;
  visibility: visible;
}

/* Overlay */
.login-panel-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.login-panel.active + .login-panel-overlay {
  opacity: 1;
  visibility: visible;
}

/* Close button */
.login-panel-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 36px;
  height: 36px;
  background: #f3f4f6;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.login-panel-close i {
  font-size: 16px;
  color: #6b7280;
}

.login-panel-close:hover {
  background: var(--color-4, #f2ab6d);
}

.login-panel-close:hover i {
  color: #fff;
}

/* Content wrapper */
.login-panel-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 30px;
  overflow-y: auto;
}

/* Header section */
.login-panel-header {
  text-align: center;
  padding: 40px 0 30px;
  border-bottom: 1px solid #f3f4f6;
  margin-bottom: 30px;
}

.login-panel-logo {
  margin-bottom: 20px;
}

.login-panel-logo img {
  max-height: 60px;
  width: auto;
}

.login-panel-title {
  font-size: 22px;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 8px 0;
}

.login-panel-subtitle {
  font-size: 14px;
  color: #9ca3af;
  margin: 0;
}

/* Action buttons */
.login-panel-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.login-panel-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.login-panel-btn i {
  font-size: 18px;
}

/* Primary button (Üye Girişi) */
.login-panel-btn-primary {
  background: linear-gradient(135deg, var(--color-4, #f2ab6d) 0%, #e89a5a 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(242, 171, 109, 0.3);
}

.login-panel-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(242, 171, 109, 0.4);
  color: #fff;
}

/* Facebook button */
.login-panel-btn-facebook {
  background: linear-gradient(135deg, #1877f2 0%, #0e5fbb 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
}

.login-panel-btn-facebook:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(24, 119, 242, 0.4);
  color: #fff;
}

/* Secondary button (Üye Olmadan Devam) */
.login-panel-btn-secondary {
  background: #f8fafc;
  color: #374151;
  border: 2px solid #e5e7eb;
}

.login-panel-btn-secondary:hover {
  background: #fff7ed;
  border-color: var(--color-4, #f2ab6d);
  color: var(--color-4, #f2ab6d);
}

/* Divider */
.login-panel-divider {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 10px 0;
}

.login-panel-divider::before,
.login-panel-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e5e7eb;
}

.login-panel-divider span {
  font-size: 13px;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Promo section */
.login-panel-promo {
  margin-top: 30px;
  padding: 20px;
  background: linear-gradient(135deg, #fff7ed 0%, #fef3e2 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.login-panel-promo-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--color-4, #f2ab6d) 0%, #e89a5a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.login-panel-promo-icon i {
  font-size: 22px;
  color: #fff;
}

.login-panel-promo-content strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 4px;
}

.login-panel-promo-content p {
  font-size: 13px;
  color: #6b7280;
  margin: 0;
  line-height: 1.4;
}

/* Mobile responsive */
@media (max-width: 576px) {
  .login-panel {
    width: 100%;
    right: -100%;
  }

  .login-panel-content {
    padding: 20px;
  }

  .login-panel-header {
    padding: 30px 0 20px;
  }

  .login-panel-title {
    font-size: 20px;
  }

  .login-panel-btn {
    padding: 14px 20px;
    font-size: 14px;
  }
}

/* ========================================
   VANILLA JS CAROUSEL STYLES (Blogs, Comments)
======================================== */
.carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.4s ease;
}

.carousel-slide {
  flex-shrink: 0;
}

.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: var(--color-3, #333);
  color: #fff;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.carousel-prev:hover,
.carousel-next:hover {
  background: var(--color-4, #f2ab6d);
}

.carousel-prev {
  left: 0;
}

.carousel-next {
  right: 0;
}

/* ========================================
   COMMENT SLIDER STYLES
======================================== */
.comment-slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.comment-slider-track {
  display: flex;
  transition: transform 0.5s ease;
}

.comment-slide {
  min-width: 100%;
  flex-shrink: 0;
}

/* ========================================
   PRODUCT GALLERY STYLES (track-mode — ProductGallery.js uyumlu)
======================================== */
.product-gallery-main {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: grab;
}

.product-gallery-main:active {
  cursor: grabbing;
}

.product-gallery-main .gallery-track {
  display: flex;
  will-change: transform;
}

.product-gallery-main .gallery-track.transitioning {
  transition: transform 0.3s ease;
}

.product-gallery-main .gallery-slide {
  flex: 0 0 100%;
  width: 100%;
}

.product-gallery-main .gallery-slide img {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.gallery-prev,
.gallery-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.gallery-prev:hover,
.gallery-next:hover {
  background: rgba(0, 0, 0, 0.8);
}

.gallery-prev {
  left: 10px;
}

.gallery-next {
  right: 10px;
}

.product-gallery-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  overflow-x: auto;
}

.gallery-thumb {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.3s ease;
  border: 2px solid transparent;
  border-radius: 5px;
  overflow: hidden;
}

.gallery-thumb:hover,
.gallery-thumb.active {
  opacity: 1;
  border-color: var(--color-4, #f2ab6d);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========================================
   BOOTSTRAP-LIKE GRID SYSTEM
   Bootstrap CDN yerine kullanılacak
======================================== */

/* Container */
.container {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.container-fluid {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}

/* Row */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.row > * {
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
}

/* Columns - Default (xs) */
.col-1 {
  width: 8.333333%;
}
.col-2 {
  width: 16.666667%;
}
.col-3 {
  width: 25%;
}
.col-4 {
  width: 33.333333%;
}
.col-5 {
  width: 41.666667%;
}
.col-6 {
  width: 50%;
}
.col-7 {
  width: 58.333333%;
}
.col-8 {
  width: 66.666667%;
}
.col-9 {
  width: 75%;
}
.col-10 {
  width: 83.333333%;
}
.col-11 {
  width: 91.666667%;
}
.col-12 {
  width: 100%;
}

/* Small devices (576px and up) */
@media (min-width: 576px) {
  .col-sm-1 {
    width: 8.333333%;
  }
  .col-sm-2 {
    width: 16.666667%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-4 {
    width: 33.333333%;
  }
  .col-sm-5 {
    width: 41.666667%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-7 {
    width: 58.333333%;
  }
  .col-sm-8 {
    width: 66.666667%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-10 {
    width: 83.333333%;
  }
  .col-sm-11 {
    width: 91.666667%;
  }
  .col-sm-12 {
    width: 100%;
  }
}

/* Medium devices (768px and up) */
@media (min-width: 768px) {
  .col-md-1 {
    width: 8.333333%;
  }
  .col-md-2 {
    width: 16.666667%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-4 {
    width: 33.333333%;
  }
  .col-md-5 {
    width: 41.666667%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-7 {
    width: 58.333333%;
  }
  .col-md-8 {
    width: 66.666667%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-10 {
    width: 83.333333%;
  }
  .col-md-11 {
    width: 91.666667%;
  }
  .col-md-12 {
    width: 100%;
  }
}

/* Large devices (992px and up) */
@media (min-width: 992px) {
  .col-lg-1 {
    width: 8.333333%;
  }
  .col-lg-2 {
    width: 16.666667%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-4 {
    width: 33.333333%;
  }
  .col-lg-5 {
    width: 41.666667%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-7 {
    width: 58.333333%;
  }
  .col-lg-8 {
    width: 66.666667%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-10 {
    width: 83.333333%;
  }
  .col-lg-11 {
    width: 91.666667%;
  }
  .col-lg-12 {
    width: 100%;
  }
}

/* Extra large devices (1200px and up) */
@media (min-width: 1200px) {
  .col-xl-1 {
    width: 8.333333%;
  }
  .col-xl-2 {
    width: 16.666667%;
  }
  .col-xl-3 {
    width: 25%;
  }
  .col-xl-4 {
    width: 33.333333%;
  }
  .col-xl-5 {
    width: 41.666667%;
  }
  .col-xl-6 {
    width: 50%;
  }
  .col-xl-7 {
    width: 58.333333%;
  }
  .col-xl-8 {
    width: 66.666667%;
  }
  .col-xl-9 {
    width: 75%;
  }
  .col-xl-10 {
    width: 83.333333%;
  }
  .col-xl-11 {
    width: 91.666667%;
  }
  .col-xl-12 {
    width: 100%;
  }
}

/* Utility classes */
.justify-content-center {
  justify-content: center;
}
.justify-content-between {
  justify-content: space-between;
}
.justify-content-end {
  justify-content: flex-end;
}
.align-items-center {
  align-items: center;
}
.text-center {
  text-align: center;
}
.d-flex {
  display: flex;
}
.d-none {
  display: none;
}
.d-block {
  display: block;
}
.img-fluid {
  max-width: 100%;
  height: auto;
}

/* Responsive display utilities */
@media (max-width: 767.98px) {
  .d-md-none {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .d-md-block {
    display: block !important;
  }
}
@media (max-width: 991.98px) {
  .d-lg-none {
    display: none !important;
  }
}
@media (min-width: 992px) {
  .d-lg-block {
    display: block !important;
  }
}

/* Dropdown */
.dropdown {
  position: relative;
}
.dropdown-toggle {
  cursor: pointer;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  min-width: 10rem;
  padding: 0.5rem 0;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.175);
}
.dropdown-menu.show {
  display: block;
}
.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.5rem 1rem;
  background-color: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
}
.dropdown-item:hover {
  background-color: #f8f9fa;
}

/* Button */
.btn {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: all 0.15s ease-in-out;
}

/* Breadcrumb (Bootstrap-like) */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
  background-color: transparent;
}

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

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

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

.breadcrumb-item a {
  color: #929da8;
  text-decoration: none;
  font-weight: 600;
}

.breadcrumb-item a:hover {
  color: #5a6268;
  text-decoration: underline;
}

.breadcrumb-item.active {
  color: #929da8;
  font-weight: 700;
}

/* Breadcrumb wrapper */
.breadcrumb-wrapper {
  position: relative;
}

/* Mobile breadcrumb (desktop'ta gizle) */
@media (min-width: 821px) {
  .breadcrumb-wrapper .mobile-bread {
    display: none;
  }
  .breadcrumb-wrapper .js-bread-list {
    display: none;
  }
}

/* ========================================
   PAGE HEADER (Breadcrumb Area)
======================================== */
.page-header {
  padding: 20px 0;
}

.page-header--centered {
  text-align: center;
}

.page-header--with-sort {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.page-title {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  color: var(--color-3, #333);
}

.page-sort {
  position: relative;
}

.page-sort-select {
  padding: 10px 35px 10px 15px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  transition: border-color 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  min-width: 180px;
}

.page-sort-select:hover {
  border-color: var(--color-4, #f2ab6d);
}

.page-sort-select:focus {
  outline: none;
  border-color: var(--color-4, #f2ab6d);
}

@media (max-width: 576px) {
  .page-header--with-sort {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-title {
    font-size: 20px;
  }

  .page-sort {
    width: 100%;
  }

  .page-sort-select {
    width: 100%;
  }
}

/* ========================================
   VIDEO MODAL
======================================== */
.video-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  aspect-ratio: 16/9;
}

.video-modal-content iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  padding: 5px 10px;
  line-height: 1;
}

.video-modal-close:hover {
  color: #ccc;
}

/* ========================================
   HEADER INLINE STYLE FIXES
======================================== */
.desktop-logo {
  justify-content: center;
}

.header-mobile-center {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.mobile-logo img {
  max-height: 100px;
}

.hamburger-menu {
  z-index: 10;
}

/* ========================================
   FOOTER INLINE STYLE FIXES
======================================== */
.footer-bottom .row {
  justify-content: space-between;
  align-items: center;
}

.signature-area {
  text-align: right;
}


/* ======================================================================
   MERGED FROM style.css — Mars-Crops Theme Styles
   ====================================================================== */

ul {
	list-style: none;
	margin: 0;
	padding: 0
}

/* ====== EASY AUTOCOMPLETE ====== */
.easy-autocomplete {
	position: relative
}

.easy-autocomplete input {
	border-color: #ccc;
	border-radius: 4px;
	border-style: solid;
	border-width: 1px;
	-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .1) inset;
	box-shadow: 0 1px 2px rgba(0, 0, 0, .1) inset;
	color: #555;
	float: none;
	padding: 6px 12px
}

.easy-autocomplete input:focus,
.easy-autocomplete input:hover {
	-webkit-box-shadow: none;
	box-shadow: none
}

.easy-autocomplete a {
	display: block
}

.easy-autocomplete.eac-blue-light input:focus,
.easy-autocomplete.eac-blue-light input:hover {
	border-color: #66afe9;
	-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .075) inset, 0 0 8px rgba(102, 175, 233, .6);
	box-shadow: 0 1px 1px rgba(0, 0, 0, .075) inset, 0 0 8px rgba(102, 175, 233, .6)
}

.easy-autocomplete.eac-blue-light ul {
	border-color: #66afe9;
	-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .075) inset, 0 0 8px rgba(102, 175, 233, .6);
	box-shadow: 0 1px 1px rgba(0, 0, 0, .075) inset, 0 0 8px rgba(102, 175, 233, .6)
}

.easy-autocomplete.eac-blue-light ul .eac-category,
.easy-autocomplete.eac-blue-light ul li {
	border-color: #66afe9
}

.easy-autocomplete.eac-blue-light ul .eac-category.selected,
.easy-autocomplete.eac-blue-light ul li.selected {
	background-color: #ecf5fc
}

.easy-autocomplete.eac-green-light input:focus,
.easy-autocomplete.eac-green-light input:hover {
	border-color: #41db00;
	-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .075) inset, 0 0 8px rgba(146, 237, 107, .6);
	box-shadow: 0 1px 1px rgba(0, 0, 0, .075) inset, 0 0 8px rgba(146, 237, 107, .6)
}

.easy-autocomplete.eac-green-light ul {
	border-color: #41db00;
	-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .075) inset, 0 0 8px rgba(146, 237, 107, .6);
	box-shadow: 0 1px 1px rgba(0, 0, 0, .075) inset, 0 0 8px rgba(146, 237, 107, .6)
}

.easy-autocomplete.eac-green-light ul .eac-category,
.easy-autocomplete.eac-green-light ul li {
	border-color: #41db00
}

.easy-autocomplete.eac-green-light ul .eac-category.selected,
.easy-autocomplete.eac-green-light ul li.selected {
	background-color: #9eff75
}

.easy-autocomplete.eac-red-light input:focus,
.easy-autocomplete.eac-red-light input:hover {
	border-color: #ff5b5b;
	-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .075) inset, 0 0 8px rgba(255, 90, 90, .6);
	box-shadow: 0 1px 1px rgba(0, 0, 0, .075) inset, 0 0 8px rgba(255, 90, 90, .6)
}

.easy-autocomplete.eac-red-light ul {
	border-color: #ff5b5b;
	-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .075) inset, 0 0 8px rgba(255, 90, 90, .6);
	box-shadow: 0 1px 1px rgba(0, 0, 0, .075) inset, 0 0 8px rgba(255, 90, 90, .6)
}

.easy-autocomplete.eac-red-light ul .eac-category,
.easy-autocomplete.eac-red-light ul li {
	border-color: #ff5b5b
}

.easy-autocomplete.eac-red-light ul .eac-category.selected,
.easy-autocomplete.eac-red-light ul li.selected {
	background-color: #ff8e8e
}

.easy-autocomplete.eac-yellow-light input:focus,
.easy-autocomplete.eac-yellow-light input:hover {
	border-color: #ffdb00;
	-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .075) inset, 0 0 8px rgba(255, 231, 84, .6);
	box-shadow: 0 1px 1px rgba(0, 0, 0, .075) inset, 0 0 8px rgba(255, 231, 84, .6)
}

.easy-autocomplete.eac-yellow-light ul {
	border-color: #ffdb00;
	-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .075) inset, 0 0 8px rgba(255, 231, 84, .6);
	box-shadow: 0 1px 1px rgba(0, 0, 0, .075) inset, 0 0 8px rgba(255, 231, 84, .6)
}

.easy-autocomplete.eac-yellow-light ul .eac-category,
.easy-autocomplete.eac-yellow-light ul li {
	border-color: #ffdb00
}

.easy-autocomplete.eac-yellow-light ul .eac-category.selected,
.easy-autocomplete.eac-yellow-light ul li.selected {
	background-color: #ffe233
}

.easy-autocomplete.eac-dark-light input:focus,
.easy-autocomplete.eac-dark-light input:hover {
	border-color: #333;
	-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .075) inset, 0 0 8px rgba(55, 55, 55, .6);
	box-shadow: 0 1px 1px rgba(0, 0, 0, .075) inset, 0 0 8px rgba(55, 55, 55, .6)
}

.easy-autocomplete.eac-dark-light ul {
	border-color: #333;
	-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .075) inset, 0 0 8px rgba(55, 55, 55, .6);
	box-shadow: 0 1px 1px rgba(0, 0, 0, .075) inset, 0 0 8px rgba(55, 55, 55, .6)
}

.easy-autocomplete.eac-dark-light ul .eac-category,
.easy-autocomplete.eac-dark-light ul li {
	border-color: #333
}

.easy-autocomplete.eac-dark-light ul .eac-category.selected,
.easy-autocomplete.eac-dark-light ul li.selected {
	background-color: #4d4d4d;
	color: #fff
}

.easy-autocomplete.eac-dark {
	color: #fff
}

.easy-autocomplete.eac-dark input {
	background-color: #404040;
	border-radius: 4px;
	-webkit-box-shadow: 0;
	box-shadow: 0;
	color: #f6f6f6
}

.easy-autocomplete.eac-dark input:focus,
.easy-autocomplete.eac-dark input:hover {
	border-color: #333;
	-webkit-box-shadow: 0;
	box-shadow: 0
}

.easy-autocomplete.eac-dark ul {
	border-color: #333
}

.easy-autocomplete.eac-dark ul .eac-category,
.easy-autocomplete.eac-dark ul li {
	background-color: #404040;
	border-color: #333
}

.easy-autocomplete.eac-dark ul .eac-category.selected,
.easy-autocomplete.eac-dark ul li.selected {
	background-color: #737373;
	color: #f6f6f6
}

.easy-autocomplete.eac-dark-glass {
	color: #fff
}

.easy-autocomplete.eac-dark-glass input {
	background-color: rgba(0, 0, 0, .8);
	border-radius: 4px;
	-webkit-box-shadow: 0;
	box-shadow: 0;
	color: #f6f6f6
}

.easy-autocomplete.eac-dark-glass input:focus,
.easy-autocomplete.eac-dark-glass input:hover {
	border-color: rgba(0, 0, 0, .8);
	-webkit-box-shadow: 0;
	box-shadow: 0
}

.easy-autocomplete.eac-dark-glass ul {
	border-color: rgba(0, 0, 0, .8)
}

.easy-autocomplete.eac-dark-glass ul .eac-category,
.easy-autocomplete.eac-dark-glass ul li {
	background-color: rgba(0, 0, 0, .8);
	border-color: rgba(0, 0, 0, .8)
}

.easy-autocomplete.eac-dark-glass ul .eac-category.selected,
.easy-autocomplete.eac-dark-glass ul li.selected {
	background-color: rgba(64, 64, 64, .8);
	color: #f6f6f6
}

.easy-autocomplete.eac-dark-glass ul .eac-category:last-child,
.easy-autocomplete.eac-dark-glass ul li:last-child {
	border-radius: 0 0 4px 4px
}

.easy-autocomplete.eac-blue {
	color: #fff
}

.easy-autocomplete.eac-blue input {
	background-color: #6d9ed1;
	border-radius: 4px;
	-webkit-box-shadow: 0;
	box-shadow: 0;
	color: #f6f6f6
}

.easy-autocomplete.eac-blue input::-webkit-input-placeholder {
	color: #f6f6f6
}

.easy-autocomplete.eac-blue input:-moz-placeholder {
	color: #f6f6f6
}

.easy-autocomplete.eac-blue input::-moz-placeholder {
	color: #f6f6f6
}

.easy-autocomplete.eac-blue input:-ms-input-placeholder {
	color: #f6f6f6
}

.easy-autocomplete.eac-blue input:focus,
.easy-autocomplete.eac-blue input:hover {
	border-color: #5a91cb;
	-webkit-box-shadow: 0;
	box-shadow: 0
}

.easy-autocomplete.eac-blue ul {
	border-color: #5a91cb
}

.easy-autocomplete.eac-blue ul .eac-category,
.easy-autocomplete.eac-blue ul li {
	background-color: #6d9ed1;
	border-color: #5a91cb
}

.easy-autocomplete.eac-blue ul .eac-category.selected,
.easy-autocomplete.eac-blue ul li.selected {
	background-color: #94b8dd;
	color: #f6f6f6
}

.easy-autocomplete.eac-yellow {
	color: #333
}

.easy-autocomplete.eac-yellow input {
	background-color: #ffdb7e;
	border-color: #333;
	border-radius: 4px;
	-webkit-box-shadow: 0;
	box-shadow: 0;
	color: #333
}

.easy-autocomplete.eac-yellow input:focus,
.easy-autocomplete.eac-yellow input:hover {
	border-color: #333;
	-webkit-box-shadow: 0;
	box-shadow: 0
}

.easy-autocomplete.eac-yellow ul {
	border-color: #333
}

.easy-autocomplete.eac-yellow ul .eac-category,
.easy-autocomplete.eac-yellow ul li {
	background-color: #ffdb7e;
	border-color: #333
}

.easy-autocomplete.eac-yellow ul .eac-category.selected,
.easy-autocomplete.eac-yellow ul li.selected {
	background-color: #ffe9b1;
	color: #333
}

.easy-autocomplete.eac-purple {
	color: #333
}

.easy-autocomplete.eac-purple input {
	background-color: #d6d1e7;
	border-color: #b8afd5;
	-webkit-box-shadow: 0;
	box-shadow: 0;
	color: #333
}

.easy-autocomplete.eac-purple input:focus,
.easy-autocomplete.eac-purple input:hover {
	border-color: #333;
	-webkit-box-shadow: 0;
	box-shadow: 0
}

.easy-autocomplete.eac-purple ul {
	border-color: #333
}

.easy-autocomplete.eac-purple ul .eac-category,
.easy-autocomplete.eac-purple ul li {
	background-color: #d6d1e7;
	border-color: #333
}

.easy-autocomplete.eac-purple ul .eac-category.selected,
.easy-autocomplete.eac-purple ul li.selected {
	background-color: #ebe8f3;
	color: #333
}

.easy-autocomplete.eac-bootstrap input {
	border-color: #ccc;
	border-radius: 4px;
	border-style: solid;
	border-width: 1px;
	color: #555;
	padding: 6px 12px
}

.easy-autocomplete-container {
	left: 0;
	position: absolute;
	width: 100%;
	z-index: 2
}

.easy-autocomplete-container ul {
	background: none repeat scroll 0 0 #fff;
	border-top: 1px dotted #ccc;
	display: none;
	margin-top: 0;
	padding-bottom: 0;
	padding-left: 0;
	position: relative;
	top: -1px
}

.easy-autocomplete-container ul .eac-category,
.easy-autocomplete-container ul li {
	background: inherit;
	border-color: #ccc;
	-o-border-image: none;
	border-image: none;
	border-style: solid;
	border-width: 0 1px;
	display: block;
	font-size: 14px;
	font-weight: 400;
	padding: 4px 12px
}

.easy-autocomplete-container ul li:last-child {
	border-radius: 0 0 2px 2px;
	border-width: 0 1px 1px
}

.easy-autocomplete-container ul li.selected {
	background: none repeat scroll 0 0 #ebebeb;
	cursor: pointer
}

.easy-autocomplete-container ul li.selected div {
	font-weight: 400
}

.easy-autocomplete-container ul li div {
	display: block;
	font-weight: 400;
	word-break: break-all
}

.easy-autocomplete-container ul li b {
	font-weight: 700
}

.easy-autocomplete-container ul .eac-category {
	color: #aaa;
	font-style: italic
}

.eac-description .eac-item span {
	color: #aaa;
	font-style: italic;
	font-size: .9em
}

.eac-icon-left .eac-item img {
	margin-right: 4px;
	max-height: 30px
}

.eac-icon-right .eac-item {
	margin-top: 8px;
	min-height: 24px;
	position: relative
}

.eac-icon-right .eac-item img {
	margin-left: 4px;
	max-height: 30px;
	position: absolute;
	right: -4px;
	top: -8px
}

.easy-autocomplete.eac-square {
	font-family: Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif
}

.easy-autocomplete.eac-square input {
	border: 1px solid #7f8c8d;
	border-radius: 0;
	color: #7f8c8d;
	font-family: inherit;
	font-size: 18px;
	font-style: italic;
	font-weight: 300;
	margin: 0;
	min-width: 350px;
	padding: 12px 43px 12px 15px
}

.easy-autocomplete.eac-square ul {
	border-color: #7f8c8d;
	border-top: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
	top: 0
}

.easy-autocomplete.eac-square ul .eac-category,
.easy-autocomplete.eac-square ul li {
	border-color: #7f8c8d;
	font-family: inherit;
	font-size: 16px;
	font-weight: 300;
	padding: 6px 12px;
	-webkit-transition: all .4s ease 0s;
	transition: all .4s ease 0s
}

.easy-autocomplete.eac-square ul .eac-category *,
.easy-autocomplete.eac-square ul li * {
	font-weight: 300
}

.easy-autocomplete.eac-square ul .eac-category.selected,
.easy-autocomplete.eac-square ul li.selected {
	background-color: #f1f1f1;
	font-weight: 300
}

.easy-autocomplete.eac-square ul .eac-category b,
.easy-autocomplete.eac-square ul li b {
	font-weight: 600
}

.easy-autocomplete.eac-round {
	font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif
}

.easy-autocomplete.eac-round input {
	border: 2px solid #888;
	border-radius: 10px;
	color: #888;
	font-family: inherit;
	font-size: 16px;
	font-weight: 400;
	margin: 0;
	min-width: 300px;
	padding: 10px
}

.easy-autocomplete.eac-round input:focus,
.easy-autocomplete.eac-round input:hover {
	border-color: #3079ed
}

.easy-autocomplete.eac-round ul {
	background: 0 0;
	border-color: #888;
	border-width: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
	min-width: 300px;
	top: 20px
}

.easy-autocomplete.eac-round ul .eac-category,
.easy-autocomplete.eac-round ul li {
	background: #fff;
	border-color: #3079ed;
	border-width: 0 2px;
	font-size: 14px;
	padding: 8px 12px;
	-webkit-transition: all .4s ease 0s;
	transition: all .4s ease 0s
}

.easy-autocomplete.eac-round ul .eac-category.selected,
.easy-autocomplete.eac-round ul li.selected {
	background-color: #d4e3fb
}

.easy-autocomplete.eac-round ul .eac-category:first-child,
.easy-autocomplete.eac-round ul li:first-child {
	border-radius: 10px 10px 0 0;
	border-width: 2px 2px 0
}

.easy-autocomplete.eac-round ul .eac-category:last-child,
.easy-autocomplete.eac-round ul li:last-child {
	border-radius: 0 0 10px 10px;
	border-width: 0 2px 2px
}

.easy-autocomplete.eac-round ul .eac-category b,
.easy-autocomplete.eac-round ul li b {
	font-weight: 700
}

.easy-autocomplete.eac-funky {
	font-family: Inconsolata, "Helvetica Neue", Helvetica, Arial, sans-serif
}

.easy-autocomplete.eac-funky input {
	background: #07ed89;
	border: 0;
	border-radius: 0;
	color: #ed076b;
	font-family: inherit;
	font-size: 18px;
	min-width: 240px;
	padding: 12px
}

.easy-autocomplete.eac-funky ul {
	background: 0 0;
	border: 0
}

.easy-autocomplete.eac-funky ul .eac-category,
.easy-autocomplete.eac-funky ul li {
	background: 0 0;
	border: 0;
	color: #ed076b;
	font-size: 18px;
	padding: 4px 12px;
	-webkit-transition: all .4s ease 0s;
	transition: all .4s ease 0s
}

.easy-autocomplete.eac-funky ul .eac-category.selected,
.easy-autocomplete.eac-funky ul li.selected {
	color: #8907ed
}

.easy-autocomplete.eac-solid input {
	-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .15) inset;
	box-shadow: 0 1px 2px rgba(0, 0, 0, .15) inset;
	border-color: #ddd;
	color: #666;
	font-size: 13px;
	min-height: 0;
	padding: 6px 12px
}

.easy-autocomplete.eac-solid ul .eac-category,
.easy-autocomplete.eac-solid ul li {
	-webkit-transition: all .4s ease 0s;
	transition: all .4s ease 0s
}

.easy-autocomplete.eac-solid ul .eac-category.selected,
.easy-autocomplete.eac-solid ul li.selected {
	background-color: #f2f2f2
}

.easy-autocomplete.eac-plate {
	font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif
}

.easy-autocomplete.eac-plate input {
	font-size: 13px;
	padding: 6px 12px
}

.easy-autocomplete.eac-plate ul {
	background: #b5b5b5;
	border-radius: 6px;
	border-width: 0;
	top: 10px
}

.easy-autocomplete.eac-plate ul .eac-category,
.easy-autocomplete.eac-plate ul li {
	background: #b5b5b5;
	color: #fafafa;
	font-size: 12px;
	-webkit-transition: all .4s ease 0s;
	transition: all .4s ease 0s
}

.easy-autocomplete.eac-plate ul .eac-category b,
.easy-autocomplete.eac-plate ul li b {
	color: #ffd464
}

.easy-autocomplete.eac-plate ul .eac-category.selected,
.easy-autocomplete.eac-plate ul li.selected {
	background: #656565
}

.easy-autocomplete.eac-plate ul .eac-category:first-child,
.easy-autocomplete.eac-plate ul li:first-child {
	border-radius: 6px 6px 0 0
}

.easy-autocomplete.eac-plate ul .eac-category:last-child,
.easy-autocomplete.eac-plate ul li:last-child {
	border-radius: 0 0 6px 6px
}

.easy-autocomplete.eac-plate-dark {
	font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif
}

.easy-autocomplete.eac-plate-dark input {
	font-size: 13px;
	padding: 6px 12px
}

.easy-autocomplete.eac-plate-dark ul {
	background: #212121;
	border-radius: 6px;
	border-width: 0;
	top: 10px
}

.easy-autocomplete.eac-plate-dark ul .eac-category,
.easy-autocomplete.eac-plate-dark ul li {
	background: #212121;
	color: #fafafa;
	font-size: 12px;
	-webkit-transition: all .4s ease 0s;
	transition: all .4s ease 0s
}

.easy-autocomplete.eac-plate-dark ul .eac-category b,
.easy-autocomplete.eac-plate-dark ul li b {
	color: #ffd464
}

.easy-autocomplete.eac-plate-dark ul .eac-category.selected,
.easy-autocomplete.eac-plate-dark ul li.selected {
	background: #656565
}

.easy-autocomplete.eac-plate-dark ul .eac-category:first-child,
.easy-autocomplete.eac-plate-dark ul li:first-child {
	border-radius: 6px 6px 0 0
}

.easy-autocomplete.eac-plate-dark ul .eac-category:last-child,
.easy-autocomplete.eac-plate-dark ul li:last-child {
	border-radius: 0 0 6px 6px
}

/* ====== FORM WRAPPER, MODAL, HEADINGS, UTILITY ====== */
.time-selector select {
	padding-left: 30px;
	-webkit-box-shadow: 0 0 20px 0 #ececf3;
	box-shadow: 0 0 20px 0 #ececf3;
	border: 1px solid #ebebeb
}

.florist-wrapper.login {
	background: #fff url(../florist/img/bg-login.png) right top no-repeat
}


body {
	position: relative
}

.form-wrapper .form-element {
	width: 100%;
	height: 52px;
	border: 1px solid #26262a;
	padding: 0 20px;
	margin-bottom: 20px
}

.form-wrapper .form-element.textarea {
	height: 104px;
	padding: 20px
}

.form-wrapper .btn {
	width: 100%;
	height: 52px;
	font-weight: 700
}

.form-wrapper .btn.send {
	color: #fff;
	background: #e53d3d
}

.form-wrapper .btn.send:hover {
	background: #9e231f
}

.form-wrapper .btn.cancel {
	color: #26262a;
	border: 1px solid #26262a;
	background: 0 0
}

.form-wrapper .btn.cancel:hover {
	background: #35353a;
	color: #fff
}

.modal {
	padding-right: 0 !important
}

.modal-dialog {
	width: 100%;
	height: 100%;
	min-width: 100%;
	min-height: 100%;
	background: rgba(0, 0, 0, .95);
	margin: 0 !important
}

.modal-dialog .modal-content {
	width: 100%;
	height: 100%;
	border-radius: 0;
	border: 0;
	background: 0 0;
	padding: 50px
}

.modal-dialog .modal-content .close {
	font-size: 40px;
	text-shadow: none;
	color: #fff;
	opacity: 1;
	position: absolute;
	right: 50px;
	outline: 0 !important
}

.modal-dialog .modal-content .modal-content-inner {
	height: 100%
}

.box {
	background: #fff;
	-webkit-box-shadow: -2px 3px 10px 0 rgba(0, 0, 0, .1);
	box-shadow: -2px 3px 10px 0 rgba(0, 0, 0, .1) !important;
}

.cbtn {
	height: 36px;
	line-height: 36px;
	background: #f2ab6d;
	color: #fff;
	font-size: 14px;
	display: inline-block;
	padding: 0 40px;
	border-radius: 0
}

.cbtn:hover {
	background: #fff;
	color: #f2ab6d
}

.h6,
h6 {
	font-size: 13px;
	color: #151515;
	font-weight: 600;
	margin: 0
}

.h4,
h4 {
	color: #151515;
	font-weight: 600;
	margin: 0
}

p {
	color: #151515;
	line-height: 1.4
}

.pl0 {
	padding-left: 0 !important
}

.pr0 {
	padding-right: 0 !important
}

.pl10 {
	padding-left: 10px !important
}

.pr10 {
	padding-right: 10px !important
}

@font-face {
	font-family: icomoon;
	src: url(../florist/fonts/icomoon.eot?ympp47);
	src: url(../florist/fonts/icomoon.eot?ympp47#iefix) format("embedded-opentype"), url(../florist/fonts/icomoon.ttf?ympp47) format("truetype"), url(../florist/fonts/icomoon.woff?ympp47) format("woff"), url(../florist/fonts/icomoon.svg?ympp47#icomoon) format("svg");
	font-weight: 400;
	font-style: normal
}

[class*=" icomoon-"],
[class^=icomoon-] {
	font-family: icomoon !important;
	speak: none;
	font-style: normal;
	font-weight: 400;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale
}

.icon-arrow-thin-up:before {
	content: "\e900"
}

.icon-arrow-thin-down:before {
	content: "\e901"
}

.icon-arrow-next:before {
	content: "\e902"
}

.icon-arrow-prev:before {
	content: "\e903"
}

.icon-date:before {
	content: "\e904"
}

.icon-search:before {
	content: "\e905"
}

.icon-arrow-thin-next:before {
	content: "\e906"
}

.icon-arrow-thin-prev:before {
	content: "\e907"
}

.icon-star:before {
	content: "\f005"
}

.icon-star-o:before {
	content: "\f006"
}

.icon-check:before {
	content: "\f00c"
}

.icon-phone:before {
	content: "\f095"
}

.icon-twitter:before {
	content: "\f099"
}

.icon-facebook:before {
	content: "\f09a"
}

.icon-mail:before {
	content: "\f0e0"
}

.icon-linkedin:before {
	content: "\f0e1"
}

.icon-location-arrow:before {
	content: "\f124"
}

.icon-youtube:before {
	content: "\f16a"
}

.icon-user-o:before {
	content: "\f2c0"
}

.icon-time:before {
	content: "\e950"
}

.comments .h3 {
	color: #3c5063;
}

.comments .comment-list .comment {
	border-bottom: 1px solid #e1e4e7;
	padding: 30px 0;
}

.comments .comment-list .comment:last-child {
	border-bottom: 0;
}

.comments .comment-list .comment .stars {
	overflow: hidden;
	margin-bottom: 15px;
}

.comments .comment-list .comment .stars i {
	float: left;
	color: #f2ab6d;
	margin-right: 6px;
}

.comments .comment-list .comment .title {
	font-size: 16px;
	color: #3c5063;
	margin-bottom: 0px;
}

.comments .comment-list .comment .description {
	font-size: 14px;
	color: #6e6e6e;
	line-height: 18px;
}

.comments .comment-list .comment .description p {
	margin: 0;
}

.comments .form {
	background: #FFF;
	padding: 30px;
	border-radius: 6px;
	margin-top: 35px;
}

.comments .form .form-group {
	position: relative;
	margin-bottom: 20px;
}

.comments .form .form-group.clearfix {
	margin-bottom: 15px;
}

.comments .form label {
	font-size: 16px;
	font-weight: 300;
	color: #3c5063;
	display: block;
	float: left;
	margin: 0 10px 0 0;
}

.comments .form .stars {
	overflow: hidden;
	float: left;
	margin-bottom: 0;
}

.comments .form .stars li {
	float: left;
	margin-right: 6px;
}

.comments .form .stars li i {
	color: #f2ab6d;
	font-size: 24px;
}

.comments .form .stars li.hover {
	cursor: pointer;
}

.comments .form .stars li.hover i {
	color: #9adbf5;
}

.comments .form i.input {
	font-size: 22px;
	color: #f2ab6d;
	position: absolute;
	left: 16px;
	top: 16px;
}

.comments .form input[type="text"] {
	width: 100%;
	padding: 0 20px 0 50px;
	border: 1px solid #e8e8e8;
	height: 55px;
	font-family: inherit;
	font-weight: 300;
	border-radius: 6px;
	color: inherit;
	outline: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	font-size: 16px;
}

.comments .form textarea {
	border: 1px solid #e8e8e8;
	width: 100%;
	height: 150px;
	font-family: inherit;
	font-weight: 300;
	border-radius: 6px;
	color: inherit;
	outline: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	padding: 15px 20px;
	resize: none;
	font-size: 16px;
}

.comments .form input[type="submit"] {
	height: 55px;
	line-height: 55px;
	border-radius: 6px;
	outline: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	font-family: inherit;
	font-weight: 300;
	font-size: 16px;
}

.comments .form input[type="submit"]:hover {
	border-color: #f2ab6d;
}


.box-padding {
	padding: 30px;
}

.box-radius {
	border-radius: 6px;
}

.box-border {
	border: 1px solid #e4e4e4;
}

.box-shadow {
	box-shadow: 0 8px 16px 0 rgba(58, 95, 149, 0.1);
}




.add-btn-wrapper>button {
	display: inline-block;
	padding: 5px 10px;
	border-radius: 5px;
	border: solid 1px rgba(0, 0, 0, .08);
	background-color: #fff;
	font-size: 14px;
	font-weight: 300;
	color: #3c5063;
	position: relative;
	cursor: pointer;
}

.add-btn-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
}


#eac-container-headerProductSearchBox .select2-result-product {
	display: flex;
	align-items: center;
}

#eac-container-headerProductSearchBox .select2-result-product-image {
	float: left;
	width: 60px;
	margin-right: 10px
}

#eac-container-headerProductSearchBox .select2-result-product-image img {
	width: 100%;
	height: auto;
	border-radius: 2px
}

#eac-container-headerProductSearchBox .select2-result-product-meta {
	margin-left: 10px;
}

#eac-container-headerProductSearchBox .select2-result-product-title {
	color: #212121;
	font-weight: bold;
	word-wrap: break-word;
	margin-bottom: 3px;
}

#eac-container-headerProductSearchBox .select2-result-product-code,
.select2-result-product-description {
	font-size: 13px;
	color: #888;
}

#eac-container-headerProductSearchBox .select2-results__option--highlighted .select2-result-product-title {
	color: #fff
}

#eac-container-headerProductSearchBox ul {
	display: block !important;
}

#eac-container-headerProductSearchBox.easy-autocomplete-container {
	width: 90%;
	left: 5%;
	z-index: 999;
}

#eac-container-headerProductSearchBox ul {
	border: none;
}

#eac-container-headerProductSearchBox ul li,
#eac-container-headerProductSearchBox ul .eac-category {
	border: none;
}


#eac-container-headerProductSearchBox ul li:hover a {
	text-decoration: none;
}

#headerProductSearchBox {
	min-width: auto;
}

.blog-sidebar-title {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 20px;
	margin-top: 10px;
	text-align: center;
}

.blog-details img {
	max-width: 100%;
	width: 100%;
	height: auto;
	margin-bottom: 15px;
}

.list-head {
	min-height: auto;
	padding: 10px 0;
	background-color: #fff;
	border-top: 1px solid #eee;
}

h1,
.h1 {
	font-size: 24px;
}

h2,
.h2 {
	font-size: 22px
}

h3,
.h3 {
	font-size: 21px;
}

h4,
.h4 {
	font-size: 20px;
}

h5,
.h5 {
	font-size: 19px;
}

h6,
.h6 {
	font-size: 18px;
}

.breadcrumbs .breadcrumb {
	padding: 15px 0 20px;
	margin: 0;
}

.breadcrumbs .breadcrumb li {
	font-size: 14px;
	letter-spacing: -0.4px;
	margin-right: 10px;
	color: black;
}


.breadcrumbs .breadcrumb li::before {
	color: black;
}

.breadcrumbs .breadcrumb a {
	color: black;
}

.breadcrumbs .breadcrumb a:hover {
	color: black;
}


.breadcrumb-item+.breadcrumb-item::before {
	content: "\f054";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
}

@media (max-width: 991.98px) {
	.list-head {
		min-height: inherit;
		padding: 20px 0;
	}
}

.list-head p {
	line-height: 1.5;
	font-size: 16px;
	margin: 0;
}

@media (max-width: 991.98px) {
	.list-head p {
		line-height: 1;
		text-align: center;
		font-size: 14px;
	}
}

.list-head .h2 {
	font-size: 26px;
	line-height: 1.5;
	text-align: center;
	margin: 0;
}

@media (max-width: 991.98px) {
	.list-head .h2 {
		line-height: 2;
	}
}

li.dropdown > a i {
    transition: transform 0.3s ease;
}

@media (min-width: 993px) {
  .dropdown:hover > a i {
    transform: rotate(180deg);
  }
}

/* Mobilde hover tamamen devre dışı */
@media (max-width: 992px) {
  .dropdown:hover > a i {
    transform: none !important;
  }
}
@media (max-width:992px) {
	.drop-menu {
    height: 0;
    overflow: hidden;
    transition: height 0.35s ease;
    background: transparent !important;
    box-shadow: none !important;
}

/* Ok animasyonu */
.dropdown > a i {
    transition: transform 0.3s ease;
}

.dropdown.open > a i {
    transform: rotate(180deg);
}

.dropdown .drop-menu {
	position: static;
	visibility: visible;
}

.dropdown .drop-menu-inner {
	border-top: none;
	padding: 8px 0;
}
.dropdown .drop-menu-inner .menu-list li {
	border-bottom: none;
}

}
.list-head .dropdown {
	float: right;
}

@media (max-width: 991.98px) {
	.list-head .dropdown {
		margin: 10px 0;
		float: none;
		text-align: center;
	}
}

.list-head .dropdown p {
	float: left;
	color: #000;
}

@media (max-width: 991.98px) {
	.list-head .dropdown p {
		float: none;
		font-size: 16px;
		line-height: 1.5;
		margin-right: 10px;
		display: inline;
	}
}

.list-head .dropdown .btn {
	margin: 0;
	outline: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: #000;
}

@media (max-width: 991.98px) {
	.list-head .dropdown .btn {
		margin: 0;
		padding: 0;
	}
}

.list-head .dropdown .btn::after {
	display: none;
}

.list-head .dropdown .btn i {
	margin: 4px 0 0 10px;
	float: right;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.list-head .dropdown .btn.active i {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}

.list-head .dropdown .dropdown-menu {
	top: 80%;
	right: 0;
}

.footer-motto {
	min-width: 482px;
	background: #f2ab6d url("../../florist/img/bg-footer-motto.png");
}

@media (max-width: 991.98px) {
	.footer-motto {
		min-width: inherit;
		padding: 30px 0;
	}
}

.footer-motto .row {
	min-height: 482px;
	text-align: center;
}

@media (max-width: 991.98px) {
	.footer-motto .row {
		min-height: inherit;
	}
}

.footer-motto p {
	width: 100%;
	font-size: 40px;
	line-height: 1.2;
	display: block;
	margin-bottom: 40px;
	color: #FFF;
}

@media (max-width: 991.98px) {
	.footer-motto p {
		text-align: center;
		font-size: 22px;
		line-height: 1.4;
		margin-bottom: 20px;
	}
}

.footer-motto a {
	min-width: 200px;
	height: 54px;
	line-height: 54px;
	border: 1px solid #FFF;
	background: #f2ab6d;
	color: #FFF;
	font-size: 14px;
	display: inline-block;
	padding: 0;
	border-radius: 0;
	font-weight: 500;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
	text-decoration: none;
}

.footer-motto a:hover {
	background: #FFF;
	color: #f2ab6d;
}

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

/* ====== COMMENTS & SPECIAL DESIGN ====== */
.comments .form {
	margin-top: 0;
}

.special-design-area p {
	font-size: 36px;
}

.special-design-area a,
.special-design-area button {
	font-size: 20px;
	padding: 0 30px;
	border-width: 1.5px;
}


/* ====== ORDER, PRODUCT, CHECKOUT, DASHBOARD, PAGES, THEME ====== */
@media (max-width: 991.98px) {
	.list-head .dropdown .dropdown-menu {
		top: 100%;
	}
}

.order-button {
	background: #f2ab6d;
	color: #fff;
	font-size: 18px;
	border-radius: 5px;
	padding: 15px 30px;
	min-width: 200px;
	margin-left: 50px;
	position: relative;
	border: none;
	outline: none;
	display: inline-flex;
	cursor: pointer;
}

@media only screen and (max-width: 480px) {
	.order-button {
		display: block;
		margin-left: 0;
		margin-top: 20px;
	}
}

.order-button:after {
	content: "\f061";
	font-weight: 900;
	font-family: 'Font Awesome 6 Free';
	font-size: 14px;
	position: absolute;
	right: 30px;
	top: 50%;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.order-button:hover:after {
	right: 25px;
}

/* Product Detail Page Layout */
.product-detail {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	padding: 30px 0;
}

.product-gallery-column {
	position: relative;
}

.product-gallery-column .sticky-wrapper {
	position: sticky;
	top: 20px;
}

.product-info-column {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

@media (max-width: 991px) {
	.product-detail {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}

.product-care-content {
	margin-bottom: 40px;
}

.product-detail .order-create .price span.old {
	color: #8C8C8C;
	text-decoration: line-through;
}

.product-detail .order-create .price {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.product-detail .order-create .h3 {
	font-size: 24px;
	font-weight: 500;
}

.product-detail .order-create .location-search {
	position: relative;
	z-index: 98;
}

.product-detail .order-create .location-search .search {
	width: auto;
	background: #FFF;
	border-radius: 3px;
	-webkit-box-shadow: 0 5px 10px -8px;
	box-shadow: 0 5px 10px -8px;
}

.product-detail .order-create .location-search .search i {
	position: absolute;
	font-size: 20px;
}

.product-detail .order-create .location-search .search .icon-location-arrow {
	color: #f2ab6d;
	right: 20px;
	top: 14px;
}

.product-detail .order-create .location-search .search .icon-search {
	color: #ced6d7;
	left: 13px;
	top: 11px;
	font-size: 28px;
}

.product-detail .order-create .location-search .search .easy-autocomplete-container ul {
	border: 1px solid #ebebeb;
}

.product-detail .order-create .location-search .search .easy-autocomplete-container ul li {
	font-size: 14px;
	color: #151515;
	border: 1px solid #ebebeb;
}

.product-detail .order-create .location-search .search .easy-autocomplete-container ul li.selected {
	background: #f2ab6d;
	color: #FFF !important;
	border-color: #f2ab6d;
}

.product-detail .order-create .location-search .search .default-locations {
	display: none;
}

.product-detail .order-create .location-search .search .default-locations ul {
	display: block !important;
}

.product-detail .order-create .location-search .search .default-locations ul li {
	font-size: 14px;
	border: 1px solid #ebebeb;
}

.product-detail .order-create .location-search .search .default-locations ul li a {
	color: #151515;
	text-decoration: none;
	display: block;
}

.product-detail .order-create .location-search .search .default-locations ul li:hover {
	background: #f2ab6d;
	border-color: #f2ab6d;
}

.product-detail .order-create .location-search .search .default-locations ul li:hover a {
	color: #FFF;
}

.product-detail .order-create .form .dates {
	overflow: hidden;
}

.product-detail .order-create .form .dates ul {
	overflow: hidden;
	margin-bottom: 20px;
}

.simple-btn {
	background: #f2ab6d;
	color: #fff;
	cursor: pointer;
	padding: 5px 15px;
	border-radius: 4px;
	border: none;
}

.product-detail .order-create .form .dates li {
	width: calc(25% - 15px);
	margin-right: 15px;
	float: left;
}

@media (max-width: 991.98px) {
	.product-detail .order-create .form .dates li {
		width: calc(25% - 12px);
	}
}

.product-detail .order-create .form .dates li:last-child {
	margin: 0;
}

.product-detail .order-create .form .dates li input {
	visibility: hidden;
}

.product-detail .order-create .form .dates li label {
	width: 100%;
	height: 80px;
	border: 1px solid #ebebeb;
	border-radius: 10px;
	position: relative;
	overflow: hidden;
	cursor: pointer;
	text-align: center;
	font-size: 14px;
	line-height: 26px;
	padding: 10px 0 0;
	margin-bottom: 0;
}

.product-detail .order-create .form .dates li label strong {
	font-weight: 500;
	font-size: 16px;
	display: block;
}

.product-detail .order-create .form .dates li label::after {
	width: auto;
	height: 4px;
	background: #f2ab6d;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	content: '';
	display: block;
	opacity: 0;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.product-detail .order-create .form .dates li label:hover::after {
	opacity: 1;
}

.product-detail .order-create .form .dates li label.selected {
	color: #FFF;
	background: #f2ab6d;
}

.product-detail .order-create .form .dates li label i {
	font-size: 26px;
}

.product-detail .order-create .form .dates li label.date-selector.date-selected {
	padding: 14px 15px 0;
	line-height: 18px;
}

@media (max-width: 991.98px) {
	.product-detail .order-create .form .dates li label.date-selector.date-selected {
		font-size: 12px;
	}
}

.product-detail .order-create .form .dates li .datepicker {
	display: none;
}

.product-detail .order-create .form .time-selector {
	display: block;
	margin: -10px 0 20px;
}

.product-detail .order-create .form .time-selector input {
	border: 1px solid #ebebeb;
	border-radius: 8px;
	height: 40px;
	line-height: 40px;
	font-family: inherit;
	font-weight: 300;
	font-size: 12px;
	padding: 0 10px 0 40px;
	color: #151515;
	cursor: pointer;
	width: 200px;
}

.product-detail .order-create .form .time-selector .icon-time {
	position: absolute;
	z-index: 40;
	margin: 12px 0 0 12px;
	color: #f2ab6d;
}

.product-detail .order-create .form .time-selector .picker--time {
	width: 200px;
	min-width: inherit;
}

.product-detail .order-create .form .time-selector .picker--time .picker__holder {
	background: none;
	border: 1px solid #ebebeb;
}

.product-detail .order-create .form .time-selector .picker--time .picker__holder .picker__list {
	padding: 0 0 10px;
}

.product-detail .order-create .form .time-selector .picker--time .picker__holder .picker__list .picker__list-item {
	font-size: 14px;
	color: #151515;
}

.product-detail .order-create .form .time-selector .picker--time.picker--focused .picker__list-item--highlighted,
.product-detail .order-create .form .time-selector .picker--time .picker__list-item--highlighted:hover {
	background: #f2ab6d;
	color: #FFF !important;
	border-color: #f2ab6d;
}

.product-detail .order-create .form .time-selector .picker--time .picker__list-item:hover {
	background: #f2ab6d;
	color: #FFF !important;
	border-color: #f2ab6d;
}

.product-detail .order-create .price {
	width: 100%;
	padding: 15px;
	overflow: hidden;
	background: #FFF;
	border-radius: 3px;
	-webkit-box-shadow: 0 5px 10px -8px;
	box-shadow: 0 5px 10px -8px;
	margin: 0 0 30px;
}

.product-detail .order-create .price span {
	display: inline-block;
	position: relative;
	font-size: 38px;
	color: #151515;
	width: auto;
}

.product-detail .order-create .price .price-wrap {
	width: 50%;
	float: left;
	display: inline-block;
}

.product-detail .order-create .price em {
	position: relative;
	display: block;
	width: 70px;
	height: 30px;
	margin: 10px 0 0 8px;
	float: right;
	font-size: 12px;
	font-style: normal;
}

.product-detail .order-create .price em i {
	display: block;
	font-style: normal;
	text-align: left;
}

.product-detail .order-create .price em i:last-child {
	margin-top: -2px;
}

.product-detail .order-create .price .cbtn {
	font-size: 18px;
	height: 55px;
	line-height: 55px;
	border-radius: 6px;
	text-decoration: none;
	float: right;
}

@media (max-width: 991.98px) {
	.product-detail .order-create .price .cbtn {
		height: auto;
		line-height: 30px;
		padding: 13px;
		width: 50%;
		text-align: center;
	}
}

.product-detail .order-create .price .cbtn:hover {
	background: #f2ab6d;
	color: #FFF;
}

.product-detail .order-create .price .price-wrap {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.product-detail .order-create .form .dates li input:disabled+label {
	cursor: not-allowed;
	opacity: 0.5;
}

.product-detail .order-create .h3 {
	margin-bottom: 1rem;
}

.product-detail .order-create .price {
	margin-top: 20px;
	flex-direction: column;
}

.product-detail .order-create .form .time-selector select {
	border: 2px solid #f2ab6d;
	font-weight: bold;
}

.product-detail .order-create .form .time-selector {
	margin: -10px 0 30px;
}


.product-detail .order-create .location-search .search .icon-search {
	z-index: 1;
}

.product-detail .order-create .location-search .search .icon-location-arrow {
	z-index: 1;
}

.product-detail .order-create .location-search .search .icon-search {
	left: 5px;
}

.product-detail .order-create .location-search .search .icon-location-arrow {
	right: 15px;
}


.text-theme {
	color: #f2ab6d;
}


.counter input[type='number'] {
	-moz-appearance: textfield;
}

.counter input::-webkit-outer-spin-button,
.counter input::-webkit-inner-spin-button {
	-webkit-appearance: none;
}

.breadcrumb-item+.breadcrumb-item::before {
	content: "\f054";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
}

.extra-product-box {
	border: 1px solid #e9e9e9;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
	padding: 10px 15px 20px;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
}

.extra-product-box img {
	margin-bottom: 20px;
	width: 100%;
	height: auto;
}

.extra-product-box-text {
	display: block;
	text-align: center;
	font-size: 16px;
	color: #929da8;
	margin-bottom: 15px;
}

.extra-product-box .extra-product-box-title {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-align: center;
}

.extra-product-box .extra-product-box-price {
	display: block;
	font-style: normal;
	color: #3c5063;
	margin-top: 5px;
}

.extra-product-box .down,
.extra-product-box .up {
	height: 35px;
	line-height: 30px;
	display: flex;
	justify-content: center;
	width: 35px;
	align-items: center;
	text-align: center;
	border-radius: 5px;
	border: solid 1px rgba(0, 0, 0, .08);
	background-color: #fff;
	font-size: 14px;
	font-weight: 300;
	color: #3c5063;
	position: relative;
	cursor: pointer;
}

.extra-product-box .counter-wrapper {
	display: flex;
	justify-content: center;
}

.extra-product-box .counter input {
	width: 35px;
	height: 35px;
	border-radius: 5px;
	border: solid 1px rgba(0, 0, 0, .08);
	background-color: #fff;
	color: #3c5063;
	text-align: center;
}

.extra-product-box .counter-wrapper>*+* {
	margin-left: 10px;
}

.extra-product-list>.row>div,
.vase-list>.row>div {
	margin-bottom: 20px;
}

.extra-product-box:hover {
	-webkit-box-shadow: 0 0 21px 0 rgba(0, 0, 0, .09);
	box-shadow: 0 0 21px 0 rgba(0, 0, 0, .09);
	background-color: #fff;
}

.extra-product-box::after {
	width: auto;
	height: 4px;
	background: #f2ab6d;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	content: '';
	display: block;
	opacity: 0;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.extra-product-box:hover::after {
	opacity: 1;
}

.extra-product-list {
	display: none;
}

.simple-bottom-border {
	border-bottom: 2px solid #f2ab6d;
	display: inline-block;
	padding-bottom: 5px;
}

.sticky-wrapper {
	position: sticky;
	top: 20px;
}


.extra-product-box.selected .add-btn-wrapper>button {
	background-color: #f2ab6d;
	color: #fff;
	font-weight: bold;
}

.add-btn-wrapper>button:focus {
	outline: none;
}

.vase-list .extra-product-box-text {
	margin-bottom: 5px;
}

.vase-list .extra-product-box img {
	margin-bottom: 5px;
}

.vase-list .extra-product-box {
	padding: 10px 15px;
}

.extra-product-box.selected::after {
	opacity: 1;
}

.extra-product-box.selected .add-btn-wrapper>button::after {
	content: "\f00c";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #f2ab6d;
	font-size: 20px;
}

.time-selector select {
	-webkit-appearance: none;
}

.js-showMoreExtraProducts {
	background-color: #222;
}


.show-login-panel {
	margin-bottom: 30px;
}

.login-panel {
	position: fixed;
	top: 0;
	bottom: 0;
	background: #FFF;
	min-width: 30%;
	z-index: 5000;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
	right: -40%;
}

.login-panel .top .btn-close-panel {
	top: 0;
}

.login-panel .top .logo {
	padding: 10px;
	text-align: center;
	height: 20%;
}

.login-panel .panel {
	top: -75%;
}

.login-panel .content {
	top: -65%;
}

.login-panel.active {
	right: 0px;
}

.login-panel .top {
	width: 100%;
	height: 50%;
	background-clip: content-box;
	position: relative;
	z-index: 1;
}

.login-panel .top .btn-close-panel {
	color: #FFF;
	text-decoration: none;
	font-size: 60px;
	position: absolute;
	left: 10px;
	top: 40px;
}

.login-panel .bottom {
	width: 100%;
	height: 50%;
	background: #FFF;
	padding: 0 20px;
	position: relative;
}

.login-panel .panel {
	width: 95%;
	margin: auto;
	padding: 25px 0;
	background: #FFF;
	min-height: auto;
	position: relative;
	top: 0;
	box-shadow: 0px 5px 13px 0 rgba(0, 0, 0, 0.05);
	border: solid 1px #ddd;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 75%;
}

.login-panel .panel::after {
	width: 100%;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	content: '';
	display: block;
	border-bottom: 5px solid #f2ab6d;
}

.login-panel .panel .btn-panel {
	width: 100%;
	min-height: calc(100% / 4);
	color: #FFF;
	border-radius: 5px;
	-webkit-box-shadow: 0px 5px 13px 0 rgba(0, 0, 0, 0.05);
	box-shadow: 0px 5px 13px 0 rgba(0, 0, 0, 0.05);
	font-size: 16px;
	font-weight: 300;
	text-align: center;
	text-decoration: none;
	position: relative;
	outline: none;
	margin-bottom: 20px;
	white-space: nowrap;
	padding: 0 20px;
	max-width: 90%;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	font-weight: 500;
}

.login-panel .panel .btn-panel:last-child {
	margin-bottom: 0;
}

.login-panel .panel .btn-panel span {
	position: relative;
}

.login-panel .panel .btn-panel i {
	display: inline-block;
	margin-left: 15px;
	position: relative;
	top: 5px;
}

.login-panel .panel .btn-panel.uye-girisi {
	background: #f2ab6d;
}

.login-panel .panel .btn-panel.uye-girisi:hover {
	background: #f2ab6d;
}

.login-panel .panel .btn-panel.fb-login {
	background: #185aa3;
}

.login-panel .panel .btn-panel.fb-login:hover {
	background: #114177;
}

.login-panel .panel .btn-panel.uye-olmadan-devam {
	background: #3c5063;
}

.login-panel .panel .btn-panel.uye-olmadan-devam:hover {
	background: #f2ab6d;
}

.login-panel .content {
	text-align: center;
	position: relative;
	top: 50%;
	transform: translateY(-50%);
}

.login-panel .content .h4 {
	font-size: 24px;
}

.login-panel .content p {
	font-size: 16px;
	line-height: 1.4;
}

.login-panel .content img {
	margin: 20px 0;
	margin-left: auto;
	margin-right: auto;
}

.login-panel .content strong {
	display: block;
}

.ico-font-family,
.florist-wrapper.panel .menu li a::after {
	font-family: 'icomoon' !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body.login {
	background: #FFF url("../../florist/img/bg-login.png") right top no-repeat;
}

body.panel {
	background: #FFF url("../../florist/img/bg-login.png") right top no-repeat;
}

.login-panel {
	right: -999%;
}

.login-panel .top .btn-close-panel {
	font-size: 40px;
	left: 10px;
	display: flex;
	top: 0;
}

.login-panel .top .logo img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	margin-left: auto;
	margin-right: auto;
}


.sub-item-box {
	display: flex;
	flex-direction: row;
	align-items: center;
}

.sub-item-box img {
	max-height: 90px;
	width: auto;
	border-radius: 4px;
}

.date-selector {
	margin-bottom: 15px;
}


.ico-font-family,
.florist-wrapper.panel .menu li a::after {
	font-family: 'icomoon' !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.process {
	background: #eff2f9;
	min-height: 160px;
	margin-bottom: 60px;
	position: relative;
}

@media (max-width: 991.98px) {
	.process {
		margin-bottom: 20px;
		min-height: inherit;
	}

	.process .main {
		display: none;
	}
}

.process ul {
	position: relative;
	overflow: hidden;
	margin: 38px 0;
}

@media (max-width: 991.98px) {
	.process ul {
		margin: 20px 0;
	}
}

.process ul::after {
	width: calc(100% - 100px);
	height: 4px;
	background: #dce2ee;
	content: ' ';
	display: block;
	position: absolute;
	margin: 18px 0 0 50px;
	z-index: 100;
}

@media (max-width: 991.98px) {
	.process ul::after {
		margin: 13px 0 0 50px;
	}
}

.process li {
	position: relative;
	z-index: 200;
	width: calc(100% / 3);
	float: left;
	text-align: center;
	color: #bec2ca;
}

.process li div {
	width: auto;
	text-align: center;
	display: inline-block;
}

.process li i {
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	border-radius: 50%;
	background: #dce2ee;
	display: inline-block;
	color: #FFF;
	font-weight: 600;
	font-size: 20px;
	font-style: normal;
	margin-bottom: 10px;
	position: relative;
	z-index: 150;
}

@media (max-width: 991.98px) {
	.process li i {
		width: 30px;
		height: 30px;
	}
}

.process li i::before {
	width: 40px;
	height: 40px;
	display: block;
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	background: url("../../florist/img/check.png") center center no-repeat;
	display: none;
}

@media (max-width: 991.98px) {
	.process li i::before {
		width: 30px;
		height: 30px;
	}
}

.process li span {
	display: block;
	font-size: 18px;
	font-weight: 600;
	color: #dce2ee;
}

@media (max-width: 991.98px) {
	.process li span {
		font-size: 14px;
	}
}

.process li.active i {
	width: 40px;
	height: 40px;
	background: #FFF;
	border: 5px solid #f2ab6d;
}

@media (max-width: 991.98px) {
	.process li.active i {
		width: 30px;
		height: 30px;
	}
}

.process li.active span {
	color: #3c5063;
}

.process li.done i {
	background: #f2ab6d;
}

.process li.done i::before {
	display: block;
}

.process li.done span {
	color: #f2ab6d;
}

.process li:nth-child(1) {
	text-align: left;
}

.process li:nth-child(1).done::before {
	width: calc(50% + 50px);
	height: 4px;
	background: #f2ab6d;
	display: block;
	content: ' ';
	position: absolute;
	top: 18px;
	left: 50px;
}

@media (max-width: 991.98px) {
	.process li:nth-child(1).done::before {
		top: 13px;
	}
}

.process li:nth-child(1).done::after {
	width: calc(100%);
	height: 4px;
	background: #f2ab6d;
	display: block;
	content: ' ';
	position: absolute;
	top: 18px;
	right: -50%;
}

@media (max-width: 991.98px) {
	.process li:nth-child(1).done::after {
		top: 13px;
	}
}

.process li:nth-child(2).done::before {
	width: calc(50% + 50px);
	height: 4px;
	background: #f2ab6d;
	display: block;
	content: ' ';
	position: absolute;
	top: 18px;
	left: 50%;
}

@media (max-width: 991.98px) {
	.process li:nth-child(2).done::before {
		top: 13px;
	}
}

.process li:nth-child(2).done::after {
	width: calc(100%);
	height: 4px;
	background: #f2ab6d;
	display: block;
	content: ' ';
	position: absolute;
	top: 18px;
	right: calc(-100% + 50px);
}

@media (max-width: 991.98px) {
	.process li:nth-child(2).done::after {
		top: 13px;
	}
}

.process li:nth-child(3) {
	text-align: right;
}

.process .pay-status {
	width: 100%;
	min-height: 160px;
	position: absolute;
	z-index: 1000;
	top: 0;
}

@media (max-width: 991.98px) {
	.process .pay-status {
		min-height: inherit;
		position: relative;
	}
}

.process .pay-status .status {
	width: 100%;
	min-height: 160px;
	overflow: hidden;
	padding: 20px 0;
}

@media (max-width: 991.98px) {
	.process .pay-status .status {
		min-height: inherit;
	}
}

.process .pay-status .icon {
	float: left;
}

@media (max-width: 991.98px) {
	.process .pay-status .icon {
		width: 50px;
		height: 50px;
	}

	.process .pay-status .icon img {
		width: 100%;
	}
}

.process .pay-status .text {
	float: left;
	margin-left: 30px;
	padding: 30px 0 0;
}

@media (max-width: 991.98px) {
	.process .pay-status .text {
		width: calc(100% - 65px);
		padding: 0;
		margin-left: 15px;
	}
}

.process .pay-status .text .h4 {
	font-size: 24px;
	line-height: 1;
	color: #FFF;
}

@media (max-width: 991.98px) {
	.process .pay-status .text .h4 {
		font-size: 20px;
	}
}

.process .pay-status .text p {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.65);
	line-height: 20px;
}

@media (max-width: 991.98px) {
	.process .pay-status .text p {
		font-size: 14px;
		margin: 0;
	}
}

.process .pay-status .declined {
	background-image: -webkit-gradient(linear, left top, right top, from(#ec5857), to(#f3994a));
	background-image: linear-gradient(to right, #ec5857, #f3994a);
}

.process .pay-status .success {
	background-image: -webkit-gradient(linear, left top, right top, from(#229754), to(#6ecf96));
	background-image: linear-gradient(to right, #229754, #6ecf96);
}


i[class^="i-"],
i[class*=" i-"] {
	background-repeat: no-repeat !important;
	background-position: center center !important;
	display: block;
}

i.i-flow {
	width: 30px;
	height: 37px;
	background: url("../../florist/img/icons/icon-flov.png");
}

i.i-ship {
	width: 40px;
	height: 25px;
	background: url("../../florist/img/icons/icon-ship.png");
}

i.i-love {
	width: 29px;
	height: 25px;
	background: url("../../florist/img/icons/icon-love.png");
}

i.i-alarm {
	width: 26px;
	height: 25px;
	background: url("../../florist/img/icons/icon-alarm.png");
}

i.i-uye-girisi {
	width: 28px;
	height: 25px;
	background: url("../../florist/img/icons/icon-uye-girisi.png");
}

i.i-facebook {
	width: 25px;
	height: 25px;
	background: url("../../florist/img/icons/icon-facebook.png");
}

i.i-uye-olmadan-giris {
	width: 30px;
	height: 25px;
	background: url("../../florist/img/icons/icon-uye-olmadan-giris.png");
}

i[class^="si-"],
i[class*=" si-"] {
	background-repeat: no-repeat !important;
	background-position: left top !important;
	display: block;
}

.si-ship {
	width: 32px;
	height: 20px;
	background: url("../../florist/img/icons/icon-siparis-takip.png");
}

.si-uyelik {
	width: 32px;
	height: 20px;
	background: url("../../florist/img/icons/icon-uyelik-bilgileri.png");
}

.si-hatirlatma-servisi {
	width: 32px;
	height: 20px;
	background: url("../../florist/img/icons/icon-hatirlatma-servisi.png");
}

.si-kayitli-kartlarim {
	width: 32px;
	height: 20px;
	background: url("../../florist/img/icons/icon-kayitli-kartlarim.png");
}

.si-sifre-degistir {
	width: 32px;
	height: 20px;
	background: url("../../florist/img/icons/icon-sifre-degistir.png");
}

.si-hediye-ceklerim {
	width: 32px;
	height: 20px;
	background: url("../../florist/img/icons/icon-hediye-ceklerim.png");
}

.si-iletisim-izinleri {
	width: 32px;
	height: 20px;
	background: url("../../florist/img/icons/icon-iletisim-izni.png");
}

::-webkit-input-placeholder {
	/* Chrome, Firefox, Opera, Safari 10.1+ */
	color: #929DA8;
	opacity: 1;
	/* Firefox */
}

:-ms-input-placeholder {
	/* Chrome, Firefox, Opera, Safari 10.1+ */
	color: #929DA8;
	opacity: 1;
	/* Firefox */
}

::-ms-input-placeholder {
	/* Chrome, Firefox, Opera, Safari 10.1+ */
	color: #929DA8;
	opacity: 1;
	/* Firefox */
}

::placeholder {
	/* Chrome, Firefox, Opera, Safari 10.1+ */
	color: #929DA8;
	opacity: 1;
	/* Firefox */
}

:-ms-input-placeholder {
	/* Internet Explorer 10-11 */
	color: #929DA8;
}

::-ms-input-placeholder {
	/* Microsoft Edge */
	color: #929DA8;
}

a {
	color: #3c5063;
}

a:hover {
	color: #f2ab6d;
}

.form-wrapper .form-group {
	margin-bottom: 20px;
}

.form-wrapper .form-group:last-child {
	margin-bottom: 0;
}

.form-wrapper .form-group .form-element[type=text],
.form-wrapper .form-group .form-element[type=email],
.form-wrapper .form-group .form-element[type=password],
.form-wrapper .form-group .form-element.textarea,
.form-wrapper .form-group .form-element.selectbox {
	width: 100%;
	height: 50px;
	padding: 0 15px;
	background-color: #FFF;
	border: 1px solid #E9E9E9;
	border-radius: 5px;
	outline: none;
	color: #3c5063;
}

.form-wrapper .form-group .form-element[type=text].error,
.form-wrapper .form-group .form-element[type=password].error,
.form-wrapper .form-group .form-element.textarea.error,
.form-wrapper .form-group .form-element.selectbox.error {
	border-color: #fa4a4d;
}

.form-wrapper .form-group .form-element[type=text].error:hover,
.form-wrapper .form-group .form-element[type=text].error:focus,
.form-wrapper .form-group .form-element[type=password].error:hover,
.form-wrapper .form-group .form-element[type=password].error:focus,
.form-wrapper .form-group .form-element.textarea.error:hover,
.form-wrapper .form-group .form-element.textarea.error:focus,
.form-wrapper .form-group .form-element.selectbox.error:hover,
.form-wrapper .form-group .form-element.selectbox.error:focus {
	border-color: #fa4a4d;
}

.form-wrapper .form-group .form-element[type=text]:hover,
.form-wrapper .form-group .form-element[type=text]:focus,
.form-wrapper .form-group .form-element[type=email]:hover,
.form-wrapper .form-group .form-element[type=email]:focus,
.form-wrapper .form-group .form-element[type=password]:hover,
.form-wrapper .form-group .form-element[type=password]:focus,
.form-wrapper .form-group .form-element.textarea:hover,
.form-wrapper .form-group .form-element.textarea:focus,
.form-wrapper .form-group .form-element.selectbox:hover,
.form-wrapper .form-group .form-element.selectbox:focus {
	border-color: #3c5063;
}

.form-wrapper .form-group .form-element[type=text].with-icon,
.form-wrapper .form-group .form-element[type=email].with-icon,
.form-wrapper .form-group .form-element[type=password].with-icon,
.form-wrapper .form-group .form-element.textarea.with-icon,
.form-wrapper .form-group .form-element.selectbox.with-icon {
	padding-left: 55px;
	background-position: 16px center;
	background-repeat: no-repeat;
}

.form-wrapper .form-group .form-element[type=text].with-icon.user,
.form-wrapper .form-group .form-element[type=password].with-icon.user,
.form-wrapper .form-group .form-element.textarea.with-icon.user,
.form-wrapper .form-group .form-element.selectbox.with-icon.user {
	background-image: url("../../florist/img/icons/icon-user.png");
}

.form-wrapper .form-group .form-element[type=text].with-icon.email,
.form-wrapper .form-group .form-element[type=email].with-icon.email,
.form-wrapper .form-group .form-element[type=password].with-icon.email,
.form-wrapper .form-group .form-element.textarea.with-icon.email,
.form-wrapper .form-group .form-element.selectbox.with-icon.email {
	background-image: url("../../florist/img/icons/icon-email.png");
}

.form-wrapper .form-group .form-element[type=text].with-icon.password,
.form-wrapper .form-group .form-element[type=password].with-icon.password,
.form-wrapper .form-group .form-element.textarea.with-icon.password,
.form-wrapper .form-group .form-element.selectbox.with-icon.password {
	background-image: url("../../florist/img/icons/icon-password.png");
}

.form-wrapper .form-group .form-element[type=text].with-icon.receiver,
.form-wrapper .form-group .form-element[type=password].with-icon.receiver,
.form-wrapper .form-group .form-element.textarea.with-icon.receiver,
.form-wrapper .form-group .form-element.selectbox.with-icon.receiver {
	background-image: url("../../florist/img/icons/icon-receiver.png");
}

.form-wrapper .form-group .form-element[type=text].with-icon.address,
.form-wrapper .form-group .form-element[type=password].with-icon.address,
.form-wrapper .form-group .form-element.textarea.with-icon.address,
.form-wrapper .form-group .form-element.selectbox.with-icon.address {
	background-image: url("../../florist/img/icons/icon-address.png");
}

.form-wrapper .form-group .form-element[type=text].with-icon.phone,
.form-wrapper .form-group .form-element[type=password].with-icon.phone,
.form-wrapper .form-group .form-element.textarea.with-icon.phone,
.form-wrapper .form-group .form-element.selectbox.with-icon.phone {
	background-image: url("../../florist/img/icons/icon-phone.png");
}

.form-wrapper .form-group .form-element[type=text].with-icon.credit-card,
.form-wrapper .form-group .form-element[type=password].with-icon.credit-card,
.form-wrapper .form-group .form-element.textarea.with-icon.credit-card,
.form-wrapper .form-group .form-element.selectbox.with-icon.credit-card {
	background-image: url("../../florist/img/icons/icon-credit-card.png");
}

.form-wrapper .form-group .form-element.textarea {
	min-height: 160px;
	resize: none;
	background-position: 16px 16px !important;
	padding-top: 15px;
	padding-bottom: 15px;
}

.form-wrapper .form-group .form-element.checkbox,
.form-wrapper .form-group .form-element.radio {
	overflow: hidden;
	/* style label */
	/* toggle hover */
	/* toggle on */
}

.form-wrapper .form-group .form-element.checkbox.big,
.form-wrapper .form-group .form-element.radio.big {
	margin: 12px 0 0;
}

.form-wrapper .form-group .form-element.checkbox input[type=radio]:empty,
.form-wrapper .form-group .form-element.checkbox input[type=checkbox]:empty,
.form-wrapper .form-group .form-element.radio input[type=radio]:empty,
.form-wrapper .form-group .form-element.radio input[type=checkbox]:empty {
	margin-left: -9999px;
}

.form-wrapper .form-group .form-element.checkbox input[type=radio]:empty~label,
.form-wrapper .form-group .form-element.checkbox input[type=checkbox]:empty~label,
.form-wrapper .form-group .form-element.radio input[type=radio]:empty~label,
.form-wrapper .form-group .form-element.radio input[type=checkbox]:empty~label {
	position: relative;
	float: left;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	padding-left: 24px;
	margin-left: 1px;
	font-size: 12px;
	color: #475a6c;
	line-height: 20px;
}

.form-wrapper .form-group .form-element.checkbox input[type=radio]:empty~label,
.form-wrapper .form-group .form-element.radio input[type=radio]:empty~label {
	font-size: 16px;
	padding-left: 32px;
	line-height: 26px;
}

.form-wrapper .form-group .form-element.checkbox.big input[type=checkbox]:empty~label,
.form-wrapper .form-group .form-element.radio.big input[type=checkbox]:empty~label {
	font-size: 16px;
	padding-left: 32px;
	line-height: 26px;
}

.form-wrapper .form-group .form-element.checkbox input[type=radio]:empty~label:before,
.form-wrapper .form-group .form-element.radio input[type=radio]:empty~label:before {
	position: absolute;
	display: block;
	top: 3px;
	bottom: 0;
	left: 0;
	content: '';
	width: 20px;
	height: 20px;
	background: #FFF;
	border-radius: 50%;
	border: 1px solid #E9E9E9;
}

.form-wrapper .form-group .form-element.checkbox input[type=checkbox]:empty~label:before,
.form-wrapper .form-group .form-element.radio input[type=checkbox]:empty~label:before {
	position: absolute;
	display: block;
	top: 3px;
	bottom: 0;
	left: 0;
	content: '';
	width: 15px;
	height: 15px;
	background: #FFF;
	border-radius: 4px;
	border: 1px solid #E9E9E9;
}

.form-wrapper .form-group .form-element.checkbox.big input[type=checkbox]:empty~label:before,
.form-wrapper .form-group .form-element.radio.big input[type=checkbox]:empty~label:before {
	width: 20px;
	height: 20px;
}

.form-wrapper .form-group .form-element.checkbox input[type=radio]:empty.error~label:before,
.form-wrapper .form-group .form-element.radio input[type=radio]:empty.error~label:before {
	-webkit-box-shadow: 0 0 0 1px #fa4a4d;
	box-shadow: 0 0 0 1px #fa4a4d;
}

.form-wrapper .form-group .form-element.checkbox input[type=checkbox]:empty.error~label:before,
.form-wrapper .form-group .form-element.radio input[type=checkbox]:empty.error~label:before {
	border-color: #fa4a4d;
}

.form-wrapper .form-group .form-element.checkbox input[type=radio]:empty~label:before,
.form-wrapper .form-group .form-element.radio input[type=radio]:empty~label:before {
	border-radius: 50%;
}

.form-wrapper .form-group .form-element.checkbox input[type=checkbox]:empty~label:before,
.form-wrapper .form-group .form-element.radio input[type=checkbox]:empty~label:before {
	border-radius: 5px;
}

.form-wrapper .form-group .form-element.checkbox input[type=radio]:hover:not(:checked)~label:before,
.form-wrapper .form-group .form-element.checkbox input[type=checkbox]:hover:not(:checked)~label:before,
.form-wrapper .form-group .form-element.radio input[type=radio]:hover:not(:checked)~label:before,
.form-wrapper .form-group .form-element.radio input[type=checkbox]:hover:not(:checked)~label:before {
	background: white;
}

.form-wrapper .form-group .form-element.checkbox input[type=radio]:checked~label:before,
.form-wrapper .form-group .form-element.radio input[type=radio]:checked~label:before {
	background: #f2ab6d url("../../florist/img/bg-radio.png") center center no-repeat;
	border: 0;
}

.form-wrapper .form-group .form-element.checkbox input[type=checkbox]:checked~label:before,
.form-wrapper .form-group .form-element.radio input[type=checkbox]:checked~label:before {
	background: #f2ab6d url("../../florist/img/tick.png") center center no-repeat;
	border-color: #f2ab6d;
}

.form-wrapper .form-group span.error {
	font-size: 13px;
	font-weight: 300;
	color: #fa4a4d;
}

.form-wrapper .form-group .custom-selectbox {
	position: relative;
}

.form-wrapper .form-group .custom-selectbox select:invalid {
	color: #929DA8 !important;
}

.form-wrapper .form-group .custom-selectbox::after {
	width: 48px;
	height: 48px;
	content: '';
	display: block;
	background: #FFF url("../../florist/img/icons/icon-arrow-down.png") center center no-repeat;
	position: absolute;
	right: 1px;
	top: 1px;
	border-radius: 50%;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.form-wrapper .form-group .custom-selectbox.active::after {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}

.btn-big {
	height: 50px;
	line-height: 50px;
	border-radius: 5px;
	background: #f2ab6d;
	padding: 0 20px;
	display: inline-block;
	font-size: 16px;
	font-weight: 300;
	text-align: center;
	text-decoration: none;
	color: #FFF;
	position: relative;
	outline: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.btn.block {
	display: block;
}

.btn-big :hover {
	background: #f2ab6d;
	color: #FFF;
}

.btn-big i[class^="icon-"],
.btn-big i[class*=" icon-"] {
	color: #FFF;
	position: absolute;
	left: 23px;
	top: 13px;
	font-size: 20px;
}

.btn-big .next::after {
	content: '';
	width: 19px;
	height: 15px;
	display: inline-block;
	background: url("../../florist/img/icons/arrow-right.png");
	margin: 0 0 0 32px;
}

.btn-big .prev {
	background: none;
	color: #475a6c;
	padding-left: 0;
}

.btn-big .prev::before {
	content: '';
	width: 19px;
	height: 15px;
	display: inline-block;
	background: url("../../florist/img/icons/arrow-left.png");
	margin: 0 32px 0 0;
}

@media (max-width: 991.98px) {
	.florist-wrapper.login {
		padding: 30px 0;
	}

	.florist-wrapper.login .vh-100 {
		height: inherit !important;
	}
}

@media (max-width: 991.98px) {
	.florist-wrapper.login .login-text {
		margin-bottom: 40px;
	}
}

.florist-wrapper.login .login-text .title {
	font-size: 36px;
	color: #3c5063;
	margin-bottom: 10px;
}

.florist-wrapper.login .login-text .title strong {
	font-weight: 700;
}

.florist-wrapper.login .login-text p {
	font-size: 16px;
	line-height: 1.6;
	color: #929DA8;
}

.florist-wrapper.login .login-text.why {
	margin-top: 70px;
}

.florist-wrapper.login .login-text.why .title {
	font-size: 24px;
}

.florist-wrapper.login .login-text.why ul li {
	line-height: 25px;
	font-size: 16px;
	color: #929DA8;
	margin-bottom: 20px;
}

.florist-wrapper.login .login-text.why ul li i {
	float: left;
	min-width: 40px;
	margin-right: 16px;
}

.florist-wrapper.login .login-form {
	padding: 32px 65px;
}

@media (max-width: 991.98px) {
	.florist-wrapper.login .login-form {
		padding: 16px 32px 24px;
	}
}

.florist-wrapper.login .login-form .title {
	font-size: 24px;
	font-weight: 300;
	line-height: 1.6;
	color: #3c5063;
	text-align: center;
	margin-bottom: 30px;
}

@media (max-width: 991.98px) {
	.florist-wrapper.login .login-form .title {
		margin-bottom: 16px;
	}
}

.florist-wrapper.login .login-form .form-group {
	clear: both;
	overflow: hidden;
}

.florist-wrapper.login .login-form .radio {
	float: left;
	margin-right: 30px;
}

.florist-wrapper.login .btn.fb-login {
	background: #185aa3;
	margin: 30px 65px;
}

.florist-wrapper.login .btn.fb-login:hover {
	background: #114177;
}

@media (max-width: 991.98px) {
	.florist-wrapper.login .btn.fb-login {
		margin: 30px 32px 0;
	}
}

.view {
	padding-bottom: 30px;
}

.view .box-title {
	min-height: 50px;
	margin-bottom: 30px;
}

.view .box-title .h3 {
	font-size: 24px;
	color: #3c5063;
	line-height: 1;
}

.view .box-title .h4 {
	font-size: 21px;
	color: #3c5063;
	line-height: 1;
	margin: 0;
	padding-top: 28px;
}

.view .box-title p {
	font-size: 16px;
	line-height: 1;
	color: #929DA8;
	margin: 0;
}

.view .box {
	padding: 30px;
}

.view .box-after {
	padding: 30px 0;
}

.view .box-after .btn.next {
	float: right;
}

@media (max-width: 991.98px) {
	.view .box-after .btn.next {
		float: none;
		display: block;
	}
}

@media (max-width: 991.98px) {
	.view .box-after .btn.prev {
		margin-bottom: 20px;
	}
}

.view .box-after .form-wrapper {
	margin: 0 0 20px;
	text-align: center;
}

.view .box-after .form-wrapper .form-element {
	display: inline-block;
}

.view .box-after .form-wrapper .form-element label {
	text-align: left;
}

@media (max-width: 991.98px) {

	.view .box-after .label,
	.view .box-after .price {
		text-align: center !important;
	}
}

.view .product-list {
	border-bottom: 1px solid #E9E9E9;
	padding-bottom: 32px;
	margin-bottom: 32px;
}

.view .product-list.order-success {
	border-top: 1px solid #E9E9E9;
	padding-top: 32px;
	margin-top: 32px;
}

.view .product-list .product {
	margin: 0 0 30px;
}

.view .product-list .product .img {
	padding: 10px;
	border: 1px solid #E9E9E9;
	display: inline-block;
	border-radius: 5px;
	position: relative;
	float: left;
	margin-right: 15px;
}

.view .product-list .product .img img {
	width: 46px;
	height: 46px;
}

.view .product-list .product .img span {
	position: absolute;
	width: 25px;
	height: 25px;
	background: #f2ab6d;
	color: #FFF;
	line-height: 25px;
	text-align: center;
	border-radius: 50%;
	font-size: 14px;
	right: -12px;
	top: -12px;
}

.view .product-list .product p {
	float: left;
	line-height: 24px;
	font-size: 16px;
	color: #3c5063;
}

.view .product-list .product p span {
	color: #929DA8;
	display: block;
	font-size: 14px;
}

.view .product-list .product .price {
	text-align: right;
	font-size: 16px;
	color: #3c5063;
	padding-right: 0;
	line-height: 65px;
}

.view .product-list .product:last-child {
	margin-bottom: 0;
}

.view .address-and-note {
	border-bottom: 1px solid #E9E9E9;
	padding-bottom: 32px;
	margin-bottom: 32px;
}

.view .address-and-note ul {
	margin: -3px 0 0;
	padding: 0;
}

.view .address-and-note ul li {
	margin-bottom: 20px;
}

.view .address-and-note ul li:last-child {
	margin: 0;
}

.view .address-and-note ul li .h5 {
	color: #3c5063;
	font-size: 16px;
	margin-bottom: 5px;
}

.view .address-and-note ul li p {
	color: #929DA8;
	margin: 0;
	font-size: 14px;
	line-height: 1.2;
}

.view .discount-code {
	border-bottom: 1px solid #E9E9E9;
	padding-bottom: 32px;
	margin-bottom: 32px;
}

.view .discount-code .form-element {
	height: 45px !important;
}

.view .discount-code .btn {
	height: 45px;
	line-height: 45px;
}

.view .total-price {
	margin-bottom: 32px;
}

.view .total-price .label {
	color: #3c5063;
	font-size: 16px;
}

.view .total-price .label span {
	color: #929DA8;
	font-size: 14px;
	display: block;
}

.view .total-price .price {
	text-align: right;
	color: #3c5063;
	font-size: 16px;
	line-height: 45px;
}

.view .total-price .price span {
	font-size: 20px;
}

.view .total-price.centered .label {
	text-align: right;
}

.view .total-price.centered .price {
	text-align: left;
	font-size: 22px;
}

.view .total-price.centered .price span {
	font-size: 32px;
}

.view .box-button {
	text-align: center;
}

.view .extra-product-list .product {
	width: 100%;
	min-height: auto;
	border: 1px solid #E9E9E9;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
	margin-bottom: 30px;
}

.view .extra-product-list .product:hover {
	-webkit-box-shadow: 0 0 21px 0 rgba(0, 0, 0, 0.09);
	box-shadow: 0 0 21px 0 rgba(0, 0, 0, 0.09);
	background-color: #ffffff;
}

.view .extra-product-list .product:hover .btn-wrapper span::after {
	opacity: 1;
}

.view .extra-product-list .product a {
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
	display: block;
	padding: 10px;
	text-decoration: none;
}

.view .extra-product-list .product .img {
	display: block;
	margin-bottom: 20px;
}

.view .extra-product-list .product .img img {
	width: 100%;
	height: auto;
}

.view .extra-product-list .product .text {
	display: block;
	text-align: center;
	font-size: 16px;
	color: #929DA8;
	line-height: 24px;
}

.view .extra-product-list .product .text .title {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	min-height: 50px;
	text-align: center;
}

.view .extra-product-list .product .text em {
	display: block;
	font-style: normal;
	color: #3c5063;
	margin-top: 10px;
}

.view .extra-product-list .product .btn-wrapper {
	display: block;
	text-align: center;
	margin: 15px 0 5px;
}

.view .extra-product-list .product .btn-wrapper span {
	height: 35px;
	line-height: 30px;
	display: inline-block;
	padding: 0 30px;
	border-radius: 5px;
	border: solid 1px rgba(0, 0, 0, 0.08);
	background-color: #ffffff;
	font-size: 14px;
	font-weight: 300;
	color: #3c5063;
	position: relative;
}

.view .extra-product-list .product .btn-wrapper span::after {
	width: auto;
	height: 4px;
	background: #f2ab6d;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	content: '';
	display: block;
	opacity: 0;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.view .box.payment-box {
	padding: 0;
}

.view .box.payment-box .titles.form-group {
	margin-bottom: 0 !important;
}

.view .box.payment-box .titles .form-element {
	border-bottom: 1px solid #E9E9E9;
	padding: 0 35px;
	height: 55px;
}

@media (max-width: 991.98px) {
	.view .box.payment-box .titles .form-element {
		padding: 0 20px;
	}
}

.view .box.payment-box .titles .form-element label {
	margin-top: 14px;
	width: 100%;
}

.view .box.payment-box .titles .form-element label .cards {
	width: 153px;
	height: 40px;
	background: url("../../florist/img/icon-payment-card.png");
	display: block;
	right: -10px;
	top: -8px;
}

@media (max-width: 991.98px) {
	.view .box.payment-box .titles .form-element label .cards {
		display: none;
	}
}

.view .box.payment-box .titles .form-element label .cards {
	position: absolute;
}

.view .box.payment-box .payment-contents .payment {
	display: none;
	padding: 40px;
}

@media (max-width: 991.98px) {
	.view .box.payment-box .payment-contents .payment {
		padding: 20px;
	}
}

.view .box.payment-box .payment-contents .payment.block {
	display: block;
}

@media (max-width: 991.98px) {
	.view .box.payment-box .payment-contents .payment .bank-list {
		padding: 0 20px;
	}
}

.bank-list .bank {
	overflow: hidden;
}

.bank-list .bank .bank-logo {
	width: 160px;
	height: 160px;
	border: 1px solid #E9E9E9;
	border-radius: 15px;
	padding: 60px 15px;
	text-align: center;
}

@media (max-width: 991.98px) {
	.bank-list .bank .bank-logo {
		width: 100%;
		margin-bottom: 15px;
	}
}

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

@media (max-width: 991.98px) {
	.bank-list .bank .bank-info {
		padding: 0;
	}
}

.bank-list .bank .bank-info .h4 {
	color: #3c5063;
	font-size: 18px;
	line-height: 18px;
	margin-bottom: 15px;
}

.bank-list .bank .bank-info ul {
	overflow: hidden;
}

@media (max-width: 991.98px) {
	.bank-list .bank .bank-info ul {
		margin-bottom: 0;
	}
}

.bank-list .bank .bank-info ul li {
	float: left;
	width: 70%;
	color: #929DA8;
	font-size: 16px;
	margin-bottom: 10px;
}

.bank-list .bank .bank-info ul li .h5 {
	color: #3c5063;
	font-size: inherit;
	margin-bottom: 5px;
	line-height: 1.4;
}

.bank-list .bank .bank-info ul li:nth-child(even) {
	width: 30%;
}

@media (max-width: 991.98px) {
	.bank-list .bank .bank-info ul li:nth-child(even) {
		width: 100%;
	}
}

@media (max-width: 991.98px) {
	.bank-list .bank .bank-info ul li {
		width: 100%;
	}
}

@media (max-width: 991.98px) {
	.view .box.payment-box .payment-contents .payment .jp-card {
		min-width: inherit;
	}
}

.view .box.payment-box .payment-contents .payment .card-wrapper {
	margin-bottom: 40px;
}

@media (max-width: 991.98px) {
	.view .box.payment-box .payment-contents .payment .card-wrapper {
		margin-bottom: 20px;
	}
}

@media (max-width: 991.98px) {
	.view .box.payment-box .payment-contents .payment .name {
		margin-bottom: 20px;
	}

	.view .box.payment-box .payment-contents .payment .p-0 {
		padding-left: 15px !important;
	}
}

.view .order-detail-info .h4 {
	font-size: 16px;
	color: #3c5063;
	margin-bottom: 5px;
}

.view .order-detail-info p {
	color: #929DA8;
	font-size: 14px;
	line-height: 25px;
	margin-bottom: 0;
}

.view .order-detail-info .user-detail {
	margin-top: 30px;
}

.view .order-detail-info .user-detail a {
	color: #f2ab6d;
}

.view .cargo-track {
	border-radius: 5px;
	border: solid 3px #f2ab6d;
	padding: 30px 10px;
	display: block;
	margin: 32px 0 0;
	overflow: hidden;
}

.view .cargo-track .left {
	width: 25%;
	float: left;
}

.view .cargo-track .left img {
	width: 100%;
	margin-top: 20px;
}

.view .cargo-track .right {
	width: 70%;
	float: right;
}

.view .cargo-track .right .h4 {
	font-size: 14px;
	color: #3c5063;
}

.view .cargo-track .right .input {
	position: relative;
}

.view .cargo-track .right input {
	color: inherit;
	border: 0;
	border-bottom: 1px solid #C5C6CF;
	padding-right: 20px;
	width: 100%;
}

.view .cargo-track .right .track-btn {
	width: 20px;
	height: 20px;
	background: url("../../florist/img/icons/arrow-left.png") no-repeat;
	display: block;
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
	top: 0;
	right: 0;
	border: none;
	outline: none;
	position: absolute;
	cursor: pointer;
}


.florist-wrapper.panel {
	margin: 100px 0;
}

.florist-wrapper.panel .menu {
	margin: 5px;
}

.florist-wrapper.panel .menu li {
	margin-bottom: 5px;
}

.florist-wrapper.panel .menu li a {
	line-height: 50px;
	font-size: 16px;
	color: #3c5063;
	padding: 0 20px;
	text-decoration: none;
	display: block;
	border-radius: 5px;
	position: relative;
}

.florist-wrapper.panel .menu li a i {
	float: left;
	margin: 16px 15px 0 0;
	width: 32px;
	height: 20px;
}

.florist-wrapper.panel .menu li a::after {
	content: "\e906";
	color: #3c5063;
	right: 20px;
	top: 15px;
	position: absolute;
	font-size: 20px;
}

.florist-wrapper.panel .menu li a:hover {
	text-decoration: underline;
}

.florist-wrapper.panel .menu li.active a {
	background: #f2ab6d;
	color: #FFF;
}

.florist-wrapper.panel .menu li.active a:hover {
	text-decoration: none;
}

.florist-wrapper.panel .menu li.active a::after {
	color: #FFF;
}

.florist-wrapper.panel .menu li.active a i {
	background-position: left bottom !important;
}

.florist-wrapper.panel .box.right {
	padding: 20px;
}

@media (max-width: 991.98px) {
	.florist-wrapper.panel .box.right {
		margin-top: 30px;
	}
}

.florist-wrapper.panel .box.right.order-detail .img {
	width: 100%;
	height: auto;
	border: 1px solid #E9E9E9;
	border-radius: 5px;
	padding: 30px;
}

.florist-wrapper.panel .box.right.order-detail .img img {
	width: 100%;
	height: auto;
}

@media (max-width: 991.98px) {
	.florist-wrapper.panel .box.right.order-detail .img {
		margin-bottom: 20px;
	}
}

.florist-wrapper.panel .box.right.order-detail .h3 {
	font-size: 18px;
	color: #3c5063;
	margin-bottom: 10px;
}

.florist-wrapper.panel .box.right.order-detail p {
	line-height: 25px;
	font-size: 16px;
	color: #929DA8;
	margin-bottom: 10px;
}

.florist-wrapper.panel .box.right.order-detail p a {
	color: #f2ab6d;
	text-decoration: none;
}

.florist-wrapper.panel .box.right.order-detail p a:hover {
	color: #f2ab6d;
}

.florist-wrapper.panel .box.right.order-detail .status {
	width: auto;
	text-align: center;
	float: left;
}

@media (max-width: 991.98px) {
	.florist-wrapper.panel .box.right.order-detail .status {
		float: none;
	}
}

.florist-wrapper.panel .box.right.order-detail .status i {
	display: inline-block;
	margin-bottom: 10px;
}

.florist-wrapper.panel .box.right.order-detail .status span {
	display: block;
	font-size: 16px;
	color: #3c5063;
}

.florist-wrapper.panel .box.right.order-detail .status.teslim-edildi i {
	width: 50px;
	height: 50px;
	background: url("../../florist/img/icons/icon-teslim-edildi.png");
}

.florist-wrapper.panel .box.right.order-detail .status.iptal-edildi i {
	width: 50px;
	height: 50px;
	background: url("../../florist/img/icons/icon-iptal-edildi.png");
}

.florist-wrapper.panel .box.right.order-detail .status.hazirlaniyor i {
	width: 51px;
	height: 50px;
	background: url("../../florist/img/icons/icon-hazirlaniyor.png");
}

.florist-wrapper.panel .box.right.order-detail .status.yola-cikti i {
	width: 74px;
	height: 45px;
	background: url("../../florist/img/icons/icon-yola-cikti.png");
}

.florist-wrapper.panel .box.right.order-detail .status.teslim-zamani-bekleniyor i {
	width: 40px;
	height: 45px;
	background: url("../../florist/img/icons/icon-teslim-zamani-bekliyor.png");
}

.florist-wrapper.panel .box.right.order-detail dl {
	overflow: hidden;
}

.florist-wrapper.panel .box.right.order-detail dl dt,
.florist-wrapper.panel .box.right.order-detail dl dd {
	font-size: 16px;
	color: #3c5063;
	line-height: 30px;
	float: left;
}

.florist-wrapper.panel .box.right.order-detail dl dt {
	width: 41.66667%;
}

@media (max-width: 991.98px) {
	.florist-wrapper.panel .box.right.order-detail dl dt {
		width: 100%;
	}
}

.florist-wrapper.panel .box.right.order-detail dl dt span {
	float: right;
	margin-right: 20px;
}

@media (max-width: 991.98px) {
	.florist-wrapper.panel .box.right.order-detail dl dt span {
		display: none;
	}
}

.florist-wrapper.panel .box.right.order-detail dl dd {
	width: 58.33333%;
}

@media (max-width: 991.98px) {
	.florist-wrapper.panel .box.right.order-detail dl dd {
		width: 100%;
	}
}

.florist-wrapper.panel .box.right.order-detail .list-invoice {
	overflow: hidden;
	margin: 0;
}

.florist-wrapper.panel .box.right.order-detail .list-invoice li {
	width: 33.33333%;
	float: left;
}

@media (max-width: 991.98px) {
	.florist-wrapper.panel .box.right.order-detail .list-invoice li {
		width: 100%;
		float: none;
		margin-bottom: 10px;
	}
}

@media(min-width: 992px) {
	.product:hover .product-hover-image {
		opacity: 1 !important;
	}
}

@media(max-width: 992px) {

	.login-panel .top .btn-close-panel {
		font-size: 25px;
		left: 10px;
		display: flex;
		top: 5px;
	}

	.mobile-hidden {
		display: none;
	}

	.product-slider-area {
		margin: 10px 0 40px;
	}

	.bread-item i {
		margin-left: 15px;
		margin-right: 15px;
	}

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

	.bread-item:nth-child(2) {
		display: none;
	}

	.js-bread-list {
		display: none;
		background-color: #fdfdfe;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		padding: 25px 20px 30px 20px;
		font-size: 12px;
		z-index: 2;
	}

	.mobile-bread {
		display: flex;
		width: 100%;
		padding-top: 10px;
		padding-bottom: 0px;
		align-items: center;
	}

	.bread-item {
		display: none;
	}

	.bread-item:first-child {
		display: inline-flex;
	}

	.bread-item:last-child {
		display: inline-block;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.breadcrumb-list {
		padding-top: 10px;
	}

	.bread-item:nth-child(2) {
		display: inline-flex;
	}

	.js-bread-list .bread-item {
		display: block;
	}

	.js-bread-list .bread-item:nth-child(2) {
		margin-left: 10px;
	}

	.js-bread-list .bread-item:nth-child(3) {
		margin-left: 20px;
	}

	.js-bread-list .bread-item:nth-child(4) {
		margin-left: 30px;
	}

	.js-bread-list .bread-item+.bread-item {
		margin-top: 20px;
	}

	.bread span {
		margin: 0px;
	}

	.js-bread-list .close-btn {
		position: absolute;
		top: 20px;
		right: 50px;
	}

	.bread-main-title {
		font-size: 20px;
		margin-bottom: 0;
	}

	.breadcrumb-wrapper {
		position: relative;
	}

	.breadcrumb-area {
		margin-bottom: 10px;
	}

	.bread-item a {
		color: inherit;
	}
}


.florist-wrapper.login .login-form .radio {
	float: left;
	margin-right: 30px;
	width: auto;
	border: none;
}

.form-wrapper .form-group .form-element.checkbox,
.form-wrapper .form-group .form-element.radio {
	border: none;
	margin-bottom: 0;
	padding: 0;
	height: auto;
}

.login .form-wrapper .form-group .form-element.checkbox {
	margin-bottom: 0;
	height: auto;
}

.login .form-element {
	margin-bottom: 0;
}

.sidebar-product-wrapper-title {
	font-weight: bold;
	margin-bottom: 10px;
	padding-bottom: 5px;
	border-bottom: 3px solid #f2ab6d;
	display: inline-block;
}

.only-wrapper {
	margin-bottom: 0 !important;
	padding-bottom: 0 !important;
	border: none !important;
}

.breadcrumb-area {
	background-color: #fff;
	border-top: 1px solid #eee;
	margin-bottom: 30px;
}

.breadcrumb-area+.login {
	margin-top: -30px;
}

.sidebar-product {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.sidebar-product .right {
	white-space: nowrap;
	flex: 0 0 auto;
}

.sidebar-product .left {
	display: flex;
	align-items: center;
	margin-right: 10px;
}

.sidebar-product .left p {
	margin-bottom: 0;
}

.margin-zero {
	margin: 0 !important;
}

.order-box-wrapper .box+.box {
	margin-top: 30px;
}

.form-wrapper .form-group .form-element {
	margin-bottom: 0;
}

.view .address-and-note ul+.total-price {
	margin-bottom: 0;
	margin-top: 15px;
}

.form-wrapper .form-group .form-element:disabled {
	background-color: #e9e9e9;
	cursor: not-allowed;
}

.btn-big.next,
.btn.prev {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.btn-big.next::after {
	content: '';
	width: 19px;
	height: 15px;
	display: inline-block;
	background: url(../florist/img/icons/arrow-right.png);
	margin: 0 0 0 32px;
}

.btn.prev::before {
	content: '';
	width: 19px;
	height: 15px;
	display: inline-block;
	background: url(../florist/img/icons/arrow-left.png);
	margin: 0 32px 0 0;
}


.cart-product-wrapper .left img {
	width: 75px;
	height: 75px;
	padding: 5px;
	border: 1px solid #E9E9E9;
	display: inline-block;
	border-radius: 5px;
	margin-right: 5px;
}

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

.box .cart-product-wrapper {
	margin-bottom: -30px;
}


.cart-product-wrapper .left {
	display: flex;
	align-items: center;
}

.cart-product-wrapper .right {
	flex: 0 0 auto;
	white-space: nowrap;
}

.btn-delete {
	background-color: #ec5857;
	color: #fff;
}

.checkbox label a {
	text-decoration: underline;
	font-weight: 500;
}

.bank-list .bank+.bank {
	margin-top: 10px;
	padding-top: 10px;
	border-top: 1px solid #e9e9e9;
}

.bank-list .bank.row {
	align-items: center;
}

.bank-list .bank .bank-info ul {
	margin-bottom: -10px;
}



.view .cargo-track {
	display: flex;
	align-items: center;
}

.view .cargo-track .left {
	margin-right: 20px;
}

.view .cargo-track .left img {
	margin-top: 10px;
}



.florist-wrapper.panel {
	margin: 50px 0;
}

.florist-wrapper.panel .menu li a i {
	color: #f2ab6d;
	font-size: 20px;
	text-align: center;
}

.order-list .order {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.order-list .order .left img {
	height: 75px;
	width: auto;
	margin-right: 5px;
	border-radius: 5px;
}

.order-list .order .right {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.order-list .order .right .simple-btn {
	margin-left: 15px;
}

.order-list .order+.order {
	border-top: 1.5px dashed #f2ab6d;
	margin-top: 15px;
	padding-top: 15px;
}

.cart-list .cart-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1.5px dashed #f2ab6d;
	margin-bottom: 15px;
	padding-bottom: 15px;
}


.cart-list .cart-item img {
	height: 75px !important;
	width: auto !important;
}

.florist-wrapper.panel .box.right.order-detail .img {
	width: auto;
	padding: 10px;
}

.box.order-detail+.box.order-detail {
	margin-top: 30px;
}

.florist-wrapper.panel .box.right.order-detail dl dd {
	min-height: 30px;
}

.total-price i {
	color: #f2ab6d;
}

.discount-code .simple-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}

.simple-btn:hover {
	opacity: 0.9;
}

.product-list .product .product-inner .text .prices .price-wrap {
	display: inline-flex;
}

.product-detail .order-create .price .price-wrap {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.delete-outline {
	width: 20px;
	height: 20px;
	background: transparent;
	color: #ec5857;
	line-height: 1;
	text-align: center;
	border-radius: 50%;
	font-size: 14px;
	border: 1px solid #ec5857;
	cursor: pointer;
	align-items: center;
	justify-content: center;
	display: inline-flex;
	padding: 0;
	margin: 0;
	position: relative;
	top: -1px;
}

.contact-page-detail {
	padding-top: 60px;
	padding-bottom: 60px;
}

.contact-page-detail .contact-info-title {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 30px;
}

.contact-page-detail .contact-adress a {
	color: black;
}

.contact-page-detail .contact-adress a i {
	margin-right: 10px;
}

.contact-page-detail .contact-adress .fal {
	margin-right: 10px;
}

.contact-page-detail input.form-control {
	width: 80%;
	font-size: 14px;
	min-height: 45px;
	font-weight: lighter;
	padding: 5px 20px;
	line-height: 19px;
	color: #424242;
	background-color: #fff;
	background-image: none;
	background-clip: padding-box;
	border: 1px solid #e5e5e5;
	border-radius: 5px;
	transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
	outline: none;
}

.contact-page-detail .mb-15 {
	margin-bottom: 15px;
}

.contact-page-detail .mb-50 {
	margin-bottom: 50px;
}

.contact-page-detail textarea.form-control {
	min-height: 155px;
	width: 80%;
	font-size: 14px;
	font-weight: lighter;
	padding: 5px 20px;
	line-height: 19px;
	color: #424242;
	background-color: #fff;
	background-image: none;
	background-clip: padding-box;
	border: 1px solid #e5e5e5;
	border-radius: 5px;
	transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
	outline: none;
}

.contact-page-detail .contact-form-title {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 30px;
}

.contact-page-detail .contact-button {
	padding: 6px 38px;
	background-color: #f2ab6d;
	color: white;
	border-radius: 4px;
	line-height: 20px;
	border: none;
}

.contact-page-detail .contact-button i {
	margin-left: 9px;
}

.contact-page-detail .contact-info-p {
	margin-bottom: 20px;
}

.contact-page-detail .social-contact .social-icon i {
	width: 70px;
	height: 70px;
	font-size: 33px;
	text-align: center;
	padding: 10px;
	border: 1px solid grey;
	margin-right: 20px;
	border-radius: 50%;
	padding-top: 17px;
	color: black;

}

.contact-page-detail .social-contact .social-icon i:hover {
	opacity: 0.5;
}

.contact-page-detail .contact-button:focus {
	outline: none;
}

.contact-page-detail ul.social-icon {
	display: flex;
}

/* Contact Main Page Styles */
.contact-main {
	padding: 40px 0 60px;
}

.contact-boxes {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-bottom: 40px;
}

.contact-box-link,
.contact-box-wrapper {
	text-decoration: none;
	color: inherit;
}

.contact-box {
	background: #fff;
	border-radius: 12px;
	padding: 25px 20px;
	text-align: center;
	box-shadow: 0 2px 15px rgba(0,0,0,0.08);
	transition: all 0.3s ease;
	height: 100%;
}

.contact-box-link:hover .contact-box {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.contact-box i {
	font-size: 32px;
	color: #f2ab6d;
	margin-bottom: 15px;
	display: block;
}

.contact-box-title {
	font-size: 16px;
	font-weight: 600;
	color: #333;
	margin-bottom: 8px;
}

.contact-box-content {
	font-size: 14px;
	color: #666;
	line-height: 1.5;
}

.contact-content-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
}

.contact-content-grid .contact-form-title {
	font-size: 22px;
	font-weight: 600;
	color: #333;
	margin-bottom: 20px;
}

.contact-content-grid .contact-form .form-field {
	margin-bottom: 15px;
}

.contact-content-grid .contact-form input,
.contact-content-grid .contact-form textarea {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #e5e5e5;
	border-radius: 8px;
	font-size: 14px;
	transition: border-color 0.3s ease;
}

.contact-content-grid .contact-form input:focus,
.contact-content-grid .contact-form textarea:focus {
	outline: none;
	border-color: #f2ab6d;
}

.contact-content-grid .contact-form textarea {
	min-height: 150px;
	resize: vertical;
}

.contact-bottom-form-btn {
	display: flex;
	flex-direction: column;
	gap: 15px;
	align-items: flex-start;
}

.contact-bottom-form-btn .submit-btns button {
	background: #f2ab6d;
	color: #fff;
	border: none;
	padding: 12px 35px;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 500;
	cursor: pointer;
	transition: background 0.3s ease;
}

.contact-bottom-form-btn .submit-btns button:hover {
	background: #e8965a;
}

.contact-content-grid .maps iframe {
	width: 100%;
	height: 400px;
	border-radius: 12px;
	border: none;
}

@media (max-width: 991px) {
	.contact-boxes {
		grid-template-columns: repeat(2, 1fr);
	}

	.contact-content-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 576px) {
	.contact-boxes {
		grid-template-columns: 1fr;
	}
}

.not-found-page-detail {
	padding-top: 60px;
	padding-bottom: 60px;
}

.not-title {
	font-size: 50px;
	text-align: center;
	margin-bottom: 40px;
}

.not-description {
	text-align: center;
}

a.not-found-link {
	display: block;
	background-color: #f2ab6d;
	width: 300px;
	text-align: center;
	margin-top: 30PX;
	margin-left: auto;
	margin-right: auto;
	padding: 5px 30px;
	height: 40px;
	border-radius: 5px;
	color: white !important;
	display: flex;
	align-items: center;
	justify-content: center;
}

a.not-found-link:hover {
	text-decoration: none;
}

#map iframe {
	width: 100% !important;
	height: 350px !important;
}

.pagination .page-item.active a {
	position: relative;
	display: block;
	padding: 0.5rem 0.75rem;
	margin-left: -1px;
	line-height: 1.25;
	color: #fff;
	background-color: #f2ab6d;
	border: 1px solid #dee2e6;
}

.pagination .page-item a {
	color: #f2ab6d;
	position: relative;
	display: block;
	padding: 0.5rem 0.75rem;
	margin-left: -1px;
	line-height: 1.25;
	background-color: #fff;
	border: 1px solid #dee2e6;
}


div#iyzipay-checkout-form {
	padding: 30px 0 20px;
}

.bank-info .h5 {
	display: flex;
	justify-content: space-between;
}


.with-icon.int-phone {
	background-position: calc(100% - 16px) center !important;
}

.iti.iti--allow-dropdown {
	width: 100%;
}

.view .product-list .product .product-inner.box {
	padding: 0;
}

.view .product-list .product .product-inner .img img {
	width: 100%;
	height: auto;
}

.product-detail .order-create .form .time-selector {
	margin: -10px 0 30px;
}

.video-overlay {
	display: block;
	position: relative;
}

.video-overlay::after {
	content: "\f04b";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	color: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 30px;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 3px solid #fff;
	border-radius: 50%;
	padding-top: 3px;
	padding-left: 6px;
	background-color: rgb(246, 64, 113);
}

.small-video-overlay::after {
	font-size: 20px;
	width: 40px;
	height: 40px;
	border: 2px solid #fff;
	border-radius: 50%;
	padding-top: 3px;
	padding-left: 4px;
}

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

@media(min-width: 992px) {

	.main-slides .slide .content .title {
		word-spacing: 100vw;
	}

	.desktop-column-reverse {
		flex-direction: column-reverse;
	}

	.box-group.desktop-column-reverse .item::before {
		top: unset !important;
		bottom: -10px !important;
	}

	.box-group.desktop-column-reverse div.item+.item {
		border-bottom: 1px solid #ebebeb !important;
	}
}

@media(max-width: 992px) {
	.contact-page-detail {
		padding-top: 20px;
	}

	.contact-page-detail .contact-info-title {
		margin-bottom: 20px;
	}

	.contact-page-detail .social-contact .social-icon i {
		width: 50px;
		height: 50px;
		font-size: 24px;
		padding-top: 12px;
	}

	.contact-page-detail input.form-control {
		width: 100%;
	}

	.contact-page-detail textarea.form-control {
		width: 100%;
	}

	.siparis-takibi li a span {
		display: none;
	}


	.bank-list .bank .bank-logo {
		height: auto;
		padding: 10px;
	}

	.bank-list .h5 .simple-btn {
		width: 100%;
		padding: 10px;
		margin: 10px 0;
	}

	.bank-info .h5 {
		flex-wrap: wrap;
	}

	.sticky-wrapper {
		position: unset;
	}

	.company-feature a {
		width: 100%;
		font-size: 12px;

	}

	.special-design-area p {
		font-size: 22px;
	}

	.special-design-area a,
	.special-design-area button {
		font-size: 18px;
		padding: 0 20px;
		border-width: 1.5px;
	}

	.easy-autocomplete.eac-square input {
		min-width: 0;
	}
}

.florist-wrapper{
	padding: 50px 0;
}

/* ========================================
   THEME VARIABLES & CUSTOM STYLES
   ======================================== */

/* Header Top Grid Layout */
.header-top-grid {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 20px;
	padding: 15px 0;
}

.header-search-column {
	display: flex;
	justify-content: flex-start;
}

.header-logo-column {
	display: flex;
	justify-content: center;
    transform: translateX(-3px);
}

.header-logo-column .desktop-logo img {
	max-height: 120px;
	width: auto;
}

.header-icons-column {
	display: flex;
	justify-content: flex-end;
}

.header-right-icons {
	display: flex;
	align-items: center;
	gap: 15px;
}

.header-icon a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #f8f8f8;
	color: #333;
	font-size: 18px;
	transition: all 0.3s ease;
}

.header-icon a:hover {
	background: #f2ab6d;
	color: #fff;
}

@media (max-width: 991px) {
	.header-desktop {
		display: none;
	}
}

/* Desktop Search - Amavi Style */
.header-top .search-area {
	display: flex;
	align-items: center;
	width: 100%;
}

.desktop-search-form {
	display: flex;
	align-items: center;
	width: 100%;
	max-width: 330px;
	background: #fff;
	border: 2px solid #f2ab6d;
	border-radius: 8px;
	overflow: hidden;
	transition: all 0.3s ease;
}

.desktop-search-form:focus-within {
	border-color: #e8965a;
	box-shadow: 0 0 0 3px rgba(242, 171, 109, 0.15);
}

.desktop-search-form input {
	flex: 1;
	border: none !important;
	outline: none !important;
	padding: 0px 20px !important;
	font-size: 15px;
	background: transparent !important;
	color: #333;
	box-shadow: none !important;
}

.desktop-search-form input::placeholder {
	color: #999;
	font-weight: 400;
}

.desktop-search-form .search-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 35px;
	background: #f2ab6d;
	border: none;
	cursor: pointer;
	transition: background 0.3s ease;
}

.desktop-search-form .search-btn:hover {
	background: #e8965a;
}

.desktop-search-form .search-btn i {
	color: #fff;
	font-size: 18px;
}

/* Search Results Page */
.search-results {
	padding: 40px 0 60px;
}

.search-results .search-info {
	margin-bottom: 30px;
}

.search-results .search-info h1 {
	font-size: 24px;
	font-weight: 500;
	color: #333;
	margin: 0;
}

:root {
	--color-1: #f2ab6d;
	--color-2: #3d2c1e;
	--color-3: #f2ab6d;
	--color-4: #e8965a;
	--color-5: #d4a574;
	--color-6: #fef5ed;
	--color-7: #fef5ed;
}

/* Global Font - Poppins Only */
body,
html,
input,
textarea,
select,
button {
	font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
}

/* Announcement Bar */
.announcement-bar {
	background-color: #f2ab6d;
	padding: 8px 0;
}

.announcement-bar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.announcement-social {
	display: flex;
	gap: 12px;
}

.announcement-social i {
	font-size: 18px;
}

.announcement-social a {
	color: #fff;
	font-size: 14px;
	transition: opacity 0.3s;
}

.announcement-social a:hover {
	opacity: 0.8;
}

.announcement-text {
	flex: 1;
	text-align: center;
	color: #fff;
	font-size: 16px;
	font-weight: 500;
}

.announcement-contact a {
	color: #fff;
	font-size: 16px;
	font-weight: 500;
}

.announcement-contact a:hover {
	color: white;
}

.announcement-contact a i {
	margin-right: 5px;
}

@media (max-width: 768px) {
	.announcement-bar {
		display: none;
	}
}

/* Navigation Menu - Amavi Style */
.header-bottom {
	background: var(--color-3);
	border-bottom: none;
	padding: 0;
}

.header-menu {
	display: flex;
	align-items: center;
	justify-content: center;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 0;
}

.header-menu>li {
	position: relative;
}

.header-menu>li>a,
.header-menu>li>span {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 9px 14px;
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	text-decoration: none;
	cursor: pointer;
	text-transform: uppercase;
}

.header-menu>li>a:hover,
.header-menu>li>span:hover,
.header-menu>li.dropdown:hover>span {
	color: #fff;
	background: transparent;
}

.header-menu>li>span i,
.header-menu>li>a i {
	font-size: 10px;
	transition: transform 0.3s;
	color: #fff;
}

.header-menu>li.dropdown:hover>span i {
	transform: rotate(180deg);
}

/* Dropdown Menu */
.drop-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 220px;
	background: #fff;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
	border-radius: 0 0 8px 8px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: all 0.3s ease;
	z-index: 1000;
}

.header-menu>li.dropdown:hover .drop-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.drop-menu-inner {
	border-top: 2px solid #151515;
	padding: 12px 0;
}

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

.drop-menu .menu-list li a {
	display: block;
	padding: 8px 14px;
	color: #000;
	font-size: 14px;
	text-decoration: none;
	transition: all 0.2s;
}


@media (max-width:992px) {
	.drop-menu .menu-list li a {
		padding: 0px;
	}
}

.drop-menu .menu-list li a:hover {
	background: #fef5ed;
	color: #f2ab6d;
	padding-left: 28px;
}

@media (max-width:992px) {

.drop-menu .menu-list li a:hover {
	background: transparent;
	color: inherit;
	padding-left: 0px;
}
}

/* ========================================
   PRODUCT PRICE SECTION - Redesigned
   ======================================== */

.product-detail .order-create .price {
	display: flex;
	flex-direction: row !important;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	width: 100%;
	padding: 20px;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
	margin: 20px 0 30px;
}

.product-detail .order-create .price .price-wrap {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.product-detail .order-create .price span.old,
.product-detail .order-create .price span.new {
	display: flex;
	align-items: baseline;
	gap: 4px;
	font-weight: 600;
}

.product-detail .order-create .price span.old {
	font-size: 20px;
	color: #999;
	text-decoration: line-through;
}

.product-detail .order-create .price span.new {
	font-size: 32px;
	color: #222;
}

.product-detail .order-create .price em {
	display: inline-flex;
	align-items: baseline;
	gap: 3px;
	font-style: normal;
	font-size: 14px;
	font-weight: 500;
	color: inherit;
	margin: 0;
	float: none;
	width: auto;
	height: auto;
}

.product-detail .order-create .price em i {
	display: inline;
	font-style: normal;
}

.product-detail .order-create .price em i:last-child {
	font-size: 11px;
	color: #888;
	margin-left: 5px;
}

.product-detail .order-create .price span.old em {
	font-size: 12px;
}

.product-detail .order-create .price span.old em i:last-child {
	font-size: 10px;
}

.product-detail .order-create .price .order-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #f2ab6d;
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	padding: 16px 32px;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: background 0.3s ease, transform 0.2s ease;
	white-space: nowrap;
}

.product-detail .order-create .price .order-button:hover {
	background: #e8965a;
	transform: translateY(-2px);
}

/* Tablet */
@media (max-width: 991px) {
	.product-detail .order-create .price {
		flex-direction: column !important;
		align-items: center;
		gap: 15px;
		padding: 15px;
	}

	.product-detail .order-create .price .price-wrap {
		flex-direction: row;
		justify-content: center;
		align-items: center;
		gap: 20px;
	}

	.product-detail .order-create .price .order-button {
		width: 100%;
		padding: 18px 24px;
		font-size: 17px;
	}
}

/* Mobile */
@media (max-width: 576px) {
	.product-detail .order-create .price {
		padding: 12px;
		margin: 15px 0 20px;
		border-radius: 6px;
	}

	.product-detail .order-create .price .price-wrap {
		flex-direction: column;
		align-items: center;
		gap: 5px;
	}

	.product-detail .order-create .price span.new {
		font-size: 28px;
	}

	.product-detail .order-create .price span.old {
		font-size: 18px;
	}

	.product-detail .order-create .price .order-button {
		padding: 16px 20px;
		font-size: 16px;
	}
}

/* ========================================
   BLOG BOX - Redesigned
   ======================================== */

.blog-box {
	display: block;
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	margin-bottom: 30px;
	padding: 0;
}

.blog-box:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.blog-box .blog-img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	margin-bottom: 0;
	box-shadow: none;
	transition: transform 0.4s ease;
}

.blog-box:hover .blog-img {
	transform: scale(1.05);
}

.blog-box .blog-content {
	padding: 20px;
	text-align: left;
	align-items: flex-start;
}

.blog-box .blog-title {
	font-size: 18px;
	font-weight: 600;
	color: #222;
	padding-bottom: 10px;
	line-height: 1.4;
}

.blog-box .blog-desc {
	font-size: 14px;
	color: #666;
	padding-bottom: 15px;
	line-height: 1.6;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.blog-box .blog-btn {
	background: transparent;
	border: none;
	padding: 0;
	overflow: visible;
}

.blog-box .blog-btn button {
	background: #f2ab6d;
	color: #fff;
	border: none;
	padding: 10px 20px;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 500;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: background 0.3s ease;
	cursor: pointer;
}

.blog-box .blog-btn button:hover {
	background: #e8965a;
}

.blog-box .blog-btn:before {
	display: none;
}

/* Blog Box Mobile */
@media (max-width: 768px) {
	.blog-box .blog-img {
		height: 200px;
	}

	.blog-box .blog-content {
		padding: 15px;
	}

	.blog-box .blog-title {
		font-size: 16px;
	}

	.blog-box .blog-desc {
		font-size: 13px;
		-webkit-line-clamp: 2;
	}
}

/* Footer Contact Icons */
.footer-box li i {
	display: inline-block !important;
	margin-right: 8px;
	color: #f2ab6d;
}

/* =============================================
   MC Grid System (Bootstrap-free)
   ============================================= */
.mc-grid {
	display: grid;
	gap: 20px;
}

.mc-grid-2 { grid-template-columns: repeat(2, 1fr); }
.mc-grid-3 { grid-template-columns: repeat(3, 1fr); }
.mc-grid-4 { grid-template-columns: repeat(4, 1fr); }
.mc-grid-5 { grid-template-columns: repeat(5, 1fr); }
.mc-grid-6 { grid-template-columns: repeat(6, 1fr); }

/* Product Grid */
.product-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

/* Products Section (İlçe Sayfaları) */
.products-section {
	padding: 40px 0;
}

.products-section .section-title {
	font-size: 24px;
	font-weight: 600;
	color: #333;
	margin-bottom: 30px;
	text-align: center;
}

.products-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

@media (max-width: 991px) {
	.products-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 576px) {
	.products-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
	}
}

/* Footer Grid */
.footer-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr 1.5fr;
	gap: 30px;
}

.footer-bottom-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	align-items: center;
}

/* Contact Grid */
.contact-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
	margin-bottom: 30px;
}

.contact-form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
}

/* Blog Grid */
.blog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

/* Blog List Page */
.blog-list-page {
	padding: 40px 0 60px;
}

.blog-list-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-bottom: 40px;
}

@media (max-width: 991px) {
	.blog-list-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 576px) {
	.blog-list-grid {
		grid-template-columns: 1fr;
	}
}

/* Blog Detail Page */
.blog-detail-page {
	padding: 40px 0 60px;
}

.blog-detail-grid {
	display: grid;
	grid-template-columns: 1fr 300px;
	gap: 40px;
}

.blog-detail-content {
	min-width: 0;
}

.blog-detail-content .content-wrapper {
	background: #fff;
	padding: 30px;
	border-radius: 12px;
	box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.blog-detail-content .content-wrapper img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
}

.blog-detail-sidebar {
	position: relative;
}

.blog-detail-sidebar .product-title {
	font-size: 18px;
	font-weight: 600;
	color: #333;
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 2px solid #f2ab6d;
}

.blog-detail-sidebar .blog-aside {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

@media (max-width: 991px) {
	.blog-detail-grid {
		grid-template-columns: 1fr;
	}

	.blog-detail-sidebar .blog-aside {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 576px) {
	.blog-detail-sidebar .blog-aside {
		grid-template-columns: 1fr;
	}
}

/* Sidebar Layout */
.sidebar-layout {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 30px;
}

.sidebar-layout-reverse {
	display: grid;
	grid-template-columns: 1fr 280px;
	gap: 30px;
}

/* Price Row Grid */
.price-row-grid {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 10px;
	align-items: center;
}

/* =============================================
   MC Form System
   ============================================= */
.form-field {
	margin-bottom: 15px;
}

.form-field label {
	display: block;
	margin-bottom: 6px;
	font-weight: 500;
	font-size: 0.875rem;
	color: #374151;
}

.form-input {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	font-size: 0.9375rem;
	transition: border-color 0.2s, box-shadow 0.2s;
	box-sizing: border-box;
}

.form-input:focus {
	outline: none;
	border-color: #f2ab6d;
	box-shadow: 0 0 0 3px rgba(242, 171, 109, 0.15);
}

.form-input::placeholder {
	color: #9ca3af;
}

textarea.form-input {
	min-height: 120px;
	resize: vertical;
}

select.form-input {
	cursor: pointer;
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
	background-position: right 12px center;
	background-repeat: no-repeat;
	background-size: 16px;
	padding-right: 40px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.form-grid {
	display: grid;
	gap: 15px;
}

.form-grid-2 {
	grid-template-columns: repeat(2, 1fr);
}

.form-grid-3 {
	grid-template-columns: repeat(3, 1fr);
}

/* Login/Register Page Layout */
.florist-wrapper.login .form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.florist-wrapper.login .login-text-wrapper {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.florist-wrapper.login .login-form-wrapper {
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.1);
	overflow: hidden;
}

.florist-wrapper.login .login-form .form-field {
	margin-bottom: 15px;
}

.florist-wrapper.login .login-form .form-input {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #e5e5e5;
	border-radius: 8px;
	font-size: 14px;
}

.florist-wrapper.login .login-form .form-input:focus {
	outline: none;
	border-color: #f2ab6d;
}

.florist-wrapper.login .btn.simple-btn.submit {
	width: 100%;
	padding: 14px 20px;
	background: #f2ab6d;
	color: #fff;
	border: none;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 500;
	cursor: pointer;
	transition: background 0.3s ease;
}

.florist-wrapper.login .btn.simple-btn.submit:hover {
	background: #e8965a;
}

@media (max-width: 991px) {
	.florist-wrapper.login .form-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}
}

/* =============================================
   MC Utility Classes
   ============================================= */
.mc-flex {
	display: flex;
}

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

.mc-flex-between {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.mc-flex-wrap {
	flex-wrap: wrap;
}

.mc-gap-10 { gap: 10px; }
.mc-gap-15 { gap: 15px; }
.mc-gap-20 { gap: 20px; }
.mc-gap-30 { gap: 30px; }

.mc-text-center { text-align: center; }
.mc-text-right { text-align: right; }

.mc-hidden { display: none !important; }

/* =============================================
   MC Responsive
   ============================================= */
@media (max-width: 1200px) {
	.product-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.footer-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 992px) {
	.product-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.sidebar-layout,
	.sidebar-layout-reverse {
		grid-template-columns: 1fr;
	}

	.contact-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.contact-form-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.product-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
	}

	.mc-grid-2,
	.mc-grid-3,
	.mc-grid-4,
	.mc-grid-5,
	.mc-grid-6 {
		grid-template-columns: 1fr;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.footer-bottom-grid {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.blog-grid {
		grid-template-columns: 1fr;
	}

	.contact-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.form-grid-2,
	.form-grid-3 {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 576px) {
	.product-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}

	.contact-grid {
		grid-template-columns: 1fr;
	}
}

/* Events Page Styles */
.events-page {
	padding: 0 0 60px 0;
}

.events-page .container {
  padding-left: 0;
  padding-right: 0;
}

.events-page-text {
	margin-bottom: 40px;
}

.events-page-text .content-wrapper {
	font-size: 16px;
	line-height: 1.8;
	color: #333;
}

.events-page-gallery {
	margin-top: 40px;
	margin-bottom: 40px;
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.gallery-item {
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	background: #f5f5f5;
	aspect-ratio: 3 / 4;
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}

.gallery-item:hover img {
	transform: scale(1.05);
}

.events-contact {
	padding: 60px 0;
	background: #f9f9f9;
}

.contact-form-title {
	font-size: 28px;
	font-weight: 600;
	margin-bottom: 30px;
	text-align: center;
	color: #333;
}

.contact-form .form-field {
	margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	padding: 15px 20px;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-size: 14px;
	transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
	outline: none;
	border-color: #4a90e2;
}

.contact-form textarea {
	resize: vertical;
	min-height: 120px;
}

.contact-bottom-form-btn {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	margin-top: 30px;
}

.submit-btns button {
	padding: 15px 40px;
	background: #4a90e2;
	color: white;
	border: none;
	border-radius: 5px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.3s ease;
}

.submit-btns button:hover {
	background: #357abd;
}

/* Responsive */
@media (max-width: 768px) {
	.gallery-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
	}

	.events-page,
	.events-contact {
		padding: 0 0 40px 0;
	}

	.contact-form-title {
		font-size: 24px;
	}
}

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

/* Stok Tükendi Banner */
.out-of-stock-banner {
	background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
	padding: 16px 20px;
	margin-bottom: -10px;
	border-radius: 10px;
}

.product-section {
	margin-top: 20px;
}

.out-of-stock-banner a {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	color: #fff;
	font-size: 15px;
	font-weight: 500;
	text-decoration: none;
	transition: opacity 0.2s ease;
}

.out-of-stock-banner a i {
	font-size: 20px;
}

.out-of-stock-banner a:hover {
	opacity: 0.9;
	text-decoration: none;
	color: #fff;
}

/* Stok Modal (Gelince Haber Ver) — video modal override */
.force-bs-modal {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 9999;
	background: rgba(0, 0, 0, 0.5);
	align-items: center;
	justify-content: center;
}

.force-bs-modal.show {
	display: flex;
}

.force-bs-modal .modal-dialog {
	width: auto;
	height: auto;
	min-width: auto;
	min-height: auto;
	max-width: 480px;
	margin: 0 auto;
	background: none;
}

.force-bs-modal .modal-content {
	background: #fff;
	border-radius: 12px;
	width: auto;
	height: auto;
	padding: 0;
	border: 1px solid #e5e7eb;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.force-bs-modal .modal-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 20px;
	border-bottom: 1px solid #e5e7eb;
}

.force-bs-modal .modal-title {
	font-size: 18px;
	font-weight: 600;
	color: #1f2937;
	padding: 0;
}

.force-bs-modal .modal-body {
	padding: 20px;
}

.force-bs-modal .modal-body .form-group {
	margin-bottom: 16px;
}

.force-bs-modal .modal-body label {
	display: block;
	font-size: 14px;
	font-weight: 500;
	color: #374151;
	margin-bottom: 6px;
}

.force-bs-modal .modal-body .form-control {
	width: 100%;
	padding: 10px 14px;
	border: 1px solid #d1d5db;
	border-radius: 8px;
	font-size: 15px;
	box-sizing: border-box;
}

.force-bs-modal .modal-footer {
	display: flex;
	justify-content: flex-end;
	gap: 10px;
	padding: 16px 20px;
	border-top: 1px solid #e5e7eb;
}

.force-bs-modal .close {
	background: none;
	border: none;
	font-size: 24px;
	cursor: pointer;
	color: #6b7280;
	position: static;
	opacity: 1;
	text-shadow: none;
}

.force-bs-modal .btn {
	padding: 10px 20px;
	border-radius: 8px;
	font-weight: 500;
	cursor: pointer;
	border: none;
	font-size: 14px;
}

.force-bs-modal .btn-secondary {
	background: #f3f4f6;
	color: #374151;
}

.force-bs-modal .btn-primary {
	background: #25d366;
	color: #fff;
}

.force-bs-modal .btn-primary:hover {
	background: #128c7e;
}
