*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #333;
  min-height: 100%;
  overflow-x: hidden;
}

@media (min-width: 1500px) {
  .container {
    max-width: 1500px;
  }
}

.headerfg {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: #fff;
  z-index: 99999;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.headerfg nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
}

.headerfg nav a {
  text-decoration: none;
  padding: 12px 15px;
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  color: #000;
  position: relative;
}

.headerfg nav a:hover {
  color: #00aacc;
}

.headerfg nav a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: #00aacc;
  left: 15px;
  right: 15px;
  bottom: -6px;
  transition: all .25s ease-in-out;
}

.headerfg nav a:not(.logo-link):hover::after {
  width: calc(100% - 30px);
}

.headerfg .header-rightfg a {
  text-decoration: none;
  padding: 16px 15px;
  display: inline-block;
  font-size: 15px;
}

.headerfg .header-logo {
  z-index: 100;
  box-sizing: content-box;
  flex-shrink: 0;
  padding: 0;
  position: relative;
}

.fg-logo {
  width: 40px;
  height: 40px;
}

.fg-mobile-icons {
  display: none;
  align-items: center;
  gap: 10px;
}

.fg-hamburger {
  cursor: pointer;
  background: none;
  border: none;
  padding: 1px 13px;
  position: relative;
  z-index: 100001;
    border-radius: 6px;
    background: #f8f8f8;
    width: 50px;
}

.fg-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #00aacc;
  margin: 5px 0;
  transition: all 0.3s ease;
}

.fg-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.fg-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.fg-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.fg-icon-link {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fg-icon-link img {
  max-width: 100%;
  max-height: 100%;
}

.fg-mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  z-index: 100000;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  padding: 80px 0 40px;
}

.fg-mobile-menu.active {
  right: 0;
}

.fg-mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 99998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.fg-mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.fg-mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100001;
}

.fg-mobile-menu-close span {
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: #000;
}

.fg-mobile-menu-close span:first-child {
  transform: rotate(45deg);
}

.fg-mobile-menu-close span:last-child {
  transform: rotate(-45deg);
}

.fg-mobile-menu-links {
  list-style: none;
  padding: 0 30px;
}

.fg-mobile-menu-links li {
  border-bottom: 1px solid #f0f0f0;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.fg-mobile-menu.active .fg-mobile-menu-links li {
  opacity: 1;
  transform: translateX(0);
}

.fg-mobile-menu.active .fg-mobile-menu-links li:nth-child(1) {
  transition-delay: 0.1s;
}

.fg-mobile-menu.active .fg-mobile-menu-links li:nth-child(2) {
  transition-delay: 0.15s;
}

.fg-mobile-menu.active .fg-mobile-menu-links li:nth-child(3) {
  transition-delay: 0.2s;
}

.fg-mobile-menu.active .fg-mobile-menu-links li:nth-child(4) {
  transition-delay: 0.25s;
}

.fg-mobile-menu.active .fg-mobile-menu-links li:nth-child(5) {
  transition-delay: 0.3s;
}

.fg-mobile-menu.active .fg-mobile-menu-links li:nth-child(6) {
  transition-delay: 0.35s;
}

.fg-mobile-menu.active .fg-mobile-menu-links li:nth-child(7) {
  transition-delay: 0.4s;
}

.fg-mobile-menu.active .fg-mobile-menu-links li:nth-child(8) {
  transition-delay: 0.45s;
}

.headerfg nav .logo-link {
  display: flex;
  width: 165px;
  justify-content: flex-start;
}

.headerfg nav .logo-link img {
  width: 145px;
  max-width: 100%;
}

.fg-mobile-menu-links a {
  display: block;
  padding: 18px 0;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  text-decoration: none;
  transition: color 0.2s ease;
}

.fg-mobile-menu-links a:hover {
  color: #00aacc;
}

@media screen and (max-width: 991px) {
  .headerfg nav a:not(.logo-link) {
    display: none;
  }

  .headerfg .header-rightfg {
    display: none !important;
  }

  .fg-mobile-icons {
    display: flex;
  }

  .headerfg .container>div {
    padding: 12px 0;
  }

  .headerfg .header-logo .logo-link,
  .headerfg .header-logo .fg-logo {
    width: 100%;
    height: 100%;
    display: block
  }

  .fg-logo {
    width: 32px;
    height: 32px;
  }
}

@media screen and (min-width: 992px) {

  .fg-mobile-menu,
  .fg-mobile-menu-overlay {
    display: none;
  }
}


.fg-slider.cat-slider {
  height: 474px;
}


.fg-slides {
  height: 100%;
  display: flex;
  transition: transform .5s ease;
}

.fg-slide {
  flex: 0 0 100%;
  height: 100%;
  position: relative;
}

.fg-slide .container {
  position: relative;
  height: 100%;
  margin: 0 auto
}

/* .fg-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 8% 10%, rgba(255, 168, 74, .25), transparent 40%), radial-gradient(circle at 90% 90%, rgba(255, 168, 74, .15), transparent 40%);
  pointer-events: none;
} */

.fg-slider {
  position: relative;
  width: 100%;
  height: auto;
  background: #1a0f0a;
  /* letterbox bölgelerini doldurur */
  overflow: hidden;
  padding: 0!important
}

.fg-slide-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  /* kırpma yok */
  display: block;
}

.fg-slide-content {
  position: absolute;
  /* 🔥 artık görselin üstünde durur */
  top: 50%;
  left: 80px;
  transform: translateY(-50%);
  max-width: 680px;
  text-align: left;
  z-index: 2;
  padding: 0 80px;
  /* mobilde daha esnek */
  color: #fff;
}

.cat-slider .fg-slide-content {
  text-align: left;
}

.fg-slide-content .fg-dates {
  font-size: .9rem;
  opacity: .75;
  margin-bottom: .75rem;
}

.fg-slide-content h2 {
  font-size: clamp(2.4rem, 5vw, 3.1rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}


.fg-slide-content p {
  font-size: 1.05rem;
  opacity: .85;
  margin-bottom: 1.5rem;
}
.fg-btn {
  background: #fff;
  color: #000;
  padding: .6rem 1.6rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  display: inline-block;
}

@media(max-width: 992px) {
  .fg-slide-content h2 {
    font-size: 16px;margin-bottom:10px
  }
  .fg-slide-content p{font-size:11px;margin-bottom: 10px;}
  .fg-slide-content br {display:none}
  .fg-slider .fg-btn{line-height:25px;font-size:14px}
  .fg-slide-content{left: 0;padding: 0 40px!important}
  .fg-slider-arrow{width: 25px!important;height: 25px!important;}
  .fg-slide-img{height: 230px!important;object-fit: cover!important;}
  .fg-pagination-item{width: 25px!important;}
}
.headerfg a.fg-header-cat-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border: 1px solid #c0c0c0;
    border-radius: 6px;
    background: #f8f8f8;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    transition: background 0.2s, border-color 0.2s;
    margin-left: 30px;
    /* border:unset */
}
.headerfg a.fg-header-cat-btn::after {
  display: none;
}
.headerfg a.fg-header-cat-btn:hover {
    background: #eee;
    border-color: #777;

}

.headerfg a.fg-header-cat-btn .cat-icon {
    width: 18px;
    height: 12px;
    position: relative;
}

.headerfg a.fg-header-cat-btn .cat-icon::before,
.headerfg a.fg-header-cat-btn .cat-icon::after,
.headerfg a.fg-header-cat-btn .cat-icon .line {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background: #333;
    left: 0;
}

.headerfg a.fg-header-cat-btn .cat-icon::before {
    top: 0;
}

.headerfg a.fg-header-cat-btn .cat-icon::after {
    bottom: -5px;
}

.headerfg a.fg-header-cat-btn .cat-icon div {
    top: 5px;
}
.headerfg a.fg-header-cat-btn .cat-icon .line {
    top: 7px;
}


.fg-slide-image {
  flex: 0 0 40%;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 100%;
}

.fg-slide-image img {
  max-height: 90%;
  object-fit: contain;
}

/* .fg-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 43px;
  height: 43px;
  border-radius: 12px;
  border: none;
  background: rgba(255, 255, 255, .5);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  backdrop-filter: blur(4px);
  transition: background .2s;
} */

 .fg-slider-arrow {
  position: absolute;
  top: 50%;
  /* transform: translateY(-50%); */
  width: 30px;
  height: 30px;
  border: none;
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: background .2s;
} 

.fg-slider-arrow:hover {
  background: #00aacc;
}

.fg-slider-arrow.fg-prev {
  left: 3rem;
}

.fg-slider-arrow.fg-next {
  right: 3rem;
}

.fg-slider-arrow svg{
  display:none
}

.fg-slider-controller {
  position: absolute;
  left: 50%;
  bottom: .7rem;
  transform: translateX(-50%);
  display: flex;
  gap: .8rem;
  align-items: center;
  z-index: 5;
}

.fg-play-toggle {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, .7);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s;
}

.fg-play-toggle:hover {
  background: rgba(0, 0, 0, .7);
}

.cat-slider .fg-play-toggle i {
  font-size: 11px
}

.fg-pagination {
  display: flex;
  gap: .55rem;
}

.fg-pagination-item {
  width: 96px;
  height: 2px;
  background: silver;
  border-radius: 999px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.fg-pagination-item .fg-progress {
  position: absolute;
  inset: 0;
  width: 0;
  background: #00aacc;
  border-radius: inherit;
  transition: width 0s linear;
}

.fg-pagination-item.fg-active {
  background: rgba(255, 255, 255, .4);
}

.cat-slider .fg-pagination {
  display: flex;
  gap: 0;
}

.cat-slider .fg-pagination-item {
  width: 24px;
  height: 4px;
  background: #000;
  opacity: .2;
  border-radius: 0;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.cat-slider .fg-pagination-item .cat-slider .fg-progress {
  position: absolute;
  inset: 0;
  width: 0;
  background: #00aacc;
  border-radius: inherit;
  transition: width 0s linear;
}

.cat-slider .fg-pagination-item.fg-active {
  background: #fff;
  opacity: 1;
}

@media(max-width: 900px) {
  .fg-slide {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    position: relative;
  }
  .fg-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #000;
    opacity: 0;
    z-index: 1;
  }

  .fg-slide-content {
    padding: 0 20px;
    max-width: 100%;
  }
  .fg-slide-content h3 {
    font-size: 15px!important;
  }

  .fgcat-shop-control {
    justify-content: center !important;
  }

  ul.fgcat-control-layout.opacity-0 {
    display: none;
  }

  .fg-slider-arrow.fg-next {
    right: 10px;
  }

  .fg-slider-arrow.fg-prev {
    left: 10px;
  }

  .fg-slide-image {
    display: none;
  }

  .fg-slider-controller {
    bottom: 1.1rem;
  }
}

.fg-best {
  padding: 20px 0 60px;
  background: #f7f7f7;
}

.fg-container {
  width: min(1180px, 96%);
  margin: 0 auto;
}

.fg-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 30px;
  font-weight: 700;
  color: #000
}

.fg-tabs {
  position: relative;
  list-style: none;
  display: flex;
  gap: 32px;
  justify-content: center;
  margin-bottom: 0px;
  border-bottom: 1px solid transparent;
  padding: 0
}

.fg-tab {
  cursor: pointer;
  padding: 10px 0 14px;
  position: relative;
  font-weight: 500;
  color: #202020;
  transition: color .2s;
}

.fg-tab:hover {
  color: #00aacc;
}

.fg-tab.fg-active {
  color: #00aacc;
}

.fg-tab.fg-active::after {
  content: "";
  position: absolute;
  height: 3px;
  background: #00aacc;
  left: 0;
  right: 0;
  bottom: -1px;
  border-radius: 999px 999px 0 0;
}
@media(max-width: 768px) {
  .fg-tab.fg-active::after {
    bottom: -10px;
  }
}
.fg-tab-contents {
  background: #fff;
  border-radius: 16px;
  padding: 18px 18px 24px;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.fg-tab-pane {
  display: none;
}

.fg-tab-pane.fg-show {
  display: block;
}

.fg-hero-row {
  background: #f5f5f5;
  border-radius: 14px;
  display: flex;
  gap: 20px;
  margin-bottom: 22px;
}

.fg-hero-img {
  flex: 0 0 52%;
  overflow: hidden;
}

.fg-hero-img img {
  width: 100%;
  display: block;
  height: 348px;
  object-fit: cover;
  object-position: center;
  border-radius: 6px 0 0 6px;

}

.fg-hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  gap: 12px;
}

.fg-hero-content h3 {
  font-size: 24px;
  font-weight: 700;
}

.fg-hero-content p {
  color: #202020;
  line-height: 1.4;
  font-weight: 700;
}

.fg-btn {
  background: #000;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 0 24px;
  font-size: 16px;
  line-height: 36px;
  font-weight: 600;
  width: fit-content;
  cursor: pointer;
}

.fg-product-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
  margin-bottom: 15px;
}

.fg-product {
  background: #f5f5f5;
  border-radius: 14px;
  padding: 18px 16px;
  text-align: center;
}

.fg-product img {
  width: 170px;
  height: 170px;
  object-fit: contain;
  margin-bottom: 18px;
  display: inline-block;
}

.fg-product h4 {
  font-size: 17px;
  margin-bottom: 10px;
}

.fg-price {
  font-weight: 700;
  display: inline-block;
  padding: 4px 8px 4px 8px;
  border-radius: 6px;
  color: #5C0F1A;
}

.fg-price span {
  font-weight: 400;
  font-size: 12px;
  display: block;
  color: #000000;
}

.fg-old {
  text-decoration: line-through;
  display: inline-block;
  margin-left: 6px;
  font-weight: 400;
  font-size: 14px;
  color: #888;
}

@media (max-width: 900px) {
  .fg-tabs {
    gap: 18px;
    overflow-x: auto;
    justify-content: flex-start;
  }

  .fg-hero-row {
    flex-direction: column;
  }

  .fg-hero-img {
    flex: 0 0 auto;
  }

  .fg-hero-content h3 {
    font-size: 20px;
  }
}

.fg-offers {
  background-color: #f7f7f7;
}

.fg-offers-head {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 20px;
}

.fg-offers-title {
  font-size: 30px;
  font-weight: 700;
  color: #000
}

.fg-offers-nav {
  position: absolute;
  right: 0;
  display: flex;
  gap: 8px;
}

.fg-offers-btn {
  width: 30px;
  height: 30px;
  border-radius: 4px;
  background: #d1d1d1;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #fff;
  transition: background .2s;
}

.fg-offers-btn:hover {
  background: #c3c6cb;
}

.fg-offer-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.fg-offer-img {
  width: 100%;
  height: 320px;
  background: #ddd;
  overflow: hidden;
}

.fg-offer-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fg-offer-body {
  padding: 25px 20px;
  text-align: center;
}

.fg-discover .fg-offer-body {
  padding: 35px 16px;
}

.fg-offer-title {
  font-weight: 600;
  margin-bottom: 16px;
  font-size: 22px
}

.fg-discover .fg-offer-title {
  font-size: 18px;
}

.fg-offer-text {
  font-size: 14px;
  color: #000;
  line-height: 1.4;
}

.fg-discover .fg-offer-text {
  color: #000;
}

.swiper {
  padding: 4px 4px 8px;
}

.fg-count-swiper-nav {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
  justify-content: space-between;
  left: 30px;
}

#fg-count-swiper {
  padding: 0
}

.fg-count-swiper-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(0, 0, 0, .5);
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  transition: background .2s;
}

.fg-count-swiper-btn:hover {
  background: rgba(0, 0, 0, .7);
}

#fg-count-prev {
  left: 0;
  right: unset
}

@media (max-width: 900px) {
  .fg-offers-head {
    justify-content: flex-start;
  }

  .fg-offers-title {
    font-size: 22px;
    font-weight: 500;
  }
}

.pb-120 {
  padding-bottom: 120px;
}

.fg-four-box {
  background-color: #f7f7f7;
  padding: 80px 0!important
}

.fg-four-box .fg-offers-title {
  margin-bottom: 60px;
}

.fg-four-box-item {
  padding: 0 50px
}

.fg-four-box-item img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin-bottom: 16px;
  opacity: .5;
  transition: .5s all;
}

.fg-four-box-item:hover img {
  opacity: 1;
}

.fg-four-box-item h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #000;
}

.fg-four-box-item p {
  color: #000;
  font-size: 16px;
  line-height: 1.4;
}

.fg-footer {
  background: #191919;
  color: #fff;
  font-size: 0.875rem;
}

.fg-footer a {
  color: rgba(255, 255, 255, .7);
  text-decoration: none;
}

.fg-footer a:hover {
  color: #fff;
}

.fg-footer-title {
  font-size: 0.875rem;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1rem;
}

.fg-footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.fg-footer-list li {
  margin-bottom: .4rem;
}

.fg-right-panel {
  border-left: 1px solid rgba(255, 255, 255, .08);
  padding-left: 2rem;
}

@media (max-width: 991.98px) {
  .fg-right-panel {
    border-left: 0;
    padding-left: 0;
    margin-top: 1rem;
  }
}

.fg-social-item {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  line-height: 1;
  transition: .2s;
  color: #fff;
}

.fg-social-item:hover {
  background: #fff;
  color: #000;
}

.fg-inner-divider {
  border-color: rgba(255, 255, 255, .04);
  margin: .75rem 0 1rem;
}

.fg-panel-subtitle {
  font-size: .78rem;
  font-weight: 600;
  margin-bottom: .6rem;
}

.fg-circle-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
}

.fg-link-box {
  background: rgba(255, 255, 255, .02);
  border: 1px solid rgba(255, 255, 255, .02);
  border-radius: .9rem;
  padding: .65rem .75rem .65rem 1rem;
}

.fg-arrow-btn {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #fff;
}

.fg-arrow-btn:hover {
  background: #fff;
  color: #000;
}

.fg-app-box {
  background: rgba(255, 255, 255, .02);
  border: 1px solid rgba(255, 255, 255, .02);
  border-radius: 1rem;
  padding: 1rem 1.1rem;
}

.fg-qr {
  width: 82px;
  height: 82px;
  border-radius: .85rem;
  background: #fff;
  background-image: linear-gradient(135deg, #ff7b00 0%, #000 100%);
}

.fg-divider {
  border-color: rgba(255, 255, 255, .05);
}

@media (max-width: 767.98px) {
  .fg-footer {
    font-size: .8rem;
  }

  .fg-footer-title {
    margin-bottom: .6rem;
  }

  .fg-app-box {
    flex-direction: row;
  }
}

.fg-social-item:hover i {
  color: #000;
}

.fg-link-box .fg-arrow-btn i {
  font-size: 13px
}

.fg-shop-about-thumb .img-1 {
  margin-left: 100px
}

@media only screen and (min-width: 992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
(max-width:767px) {
  .fg-shop-about-thumb .img-1 {
    text-align: end
  }
}

.fg-shop-about-thumb .img-2 {
  margin-top: -60px
}

.fg-shop-about-thumb .img-3 {
  margin-left: 25px
}

@media (max-width: 767px) {
  .fg-shop-about-thumb .img-3 {
    display: none
  }
}

.fg-shop-about-thumb .img-4 {
  margin-right: 30px
}

.fg-shop-about-thumb .img-5 {
  margin-top: -75px;
  margin-bottom: 60px
}

@media only screen and (min-width: 992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px) {
  .fg-shop-about-thumb .img-5 {
    text-align: start
  }
}

@media (max-width: 767px) {
  .fg-shop-about-thumb .img-5 {
    display: none
  }
}

.fg-shop-about-thumb .img-6 {
  margin-right: 160px
}

.fg-shop-about-content p {
  color: #322820;
  letter-spacing: -.02em;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.25;
  font-family: var(--fg-ff-onest);
  margin-bottom: 50px
}

@media only screen and (min-width: 1200px) and (max-width:1399px) {
  .fg-shop-about-content p {
    font-size: 37px
  }
}

@media only screen and (min-width: 992px) and (max-width:1199px) {
  .fg-shop-about-content p {
    margin-bottom: 30px;
    font-size: 35px
  }
}

@media only screen and (min-width: 768px) and (max-width:991px) {
  .fg-shop-about-content p {
    margin-bottom: 30px;
    font-size: 30px
  }
}

@media (max-width: 767px) {
  .fg-shop-about-content p {
    margin-bottom: 30px;
    font-size: 26px
  }
}

@media only screen and (min-width: 992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
(max-width:767px) {
  .fg-shop-about-content p br {
    display: none
  }
}

.fg-shop-about-circle-text {
  margin-bottom: 35px;
  animation: 5s linear infinite rotate2
}

.fg-shop-about-btn {
  margin-bottom: 140px
}

@media (max-width: 767px) {
  .fg-shop-about-btn {
    margin-bottom: 50px
  }
}

.fg-checkout-btn {
  font-size: 16px;
  font-weight: 500;
  height: 50px;
  padding: 0 30px;
  line-height: 50px;
  text-align: center;
  border-radius: 8px;
  display: inline-block;
  color: #fff;
  background-color: #00aacc;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.fg-checkout-btn.btn-plr {
  padding: 0 150px;
  border-radius: 0;
}

@media (max-width: 767px) {
  .fg-checkout-btn.btn-plr {
    padding: 0 100px;
  }
}

.fg-checkout-btn.border-style {
  font-weight: 500;
  font-size: 15px;
  color: #00aacc;
  border-radius: 0;
  text-transform: capitalize;
  background-color: transparent;
  border: 1px solid rgba(77, 61, 48, 0.12);
}

.fg-checkout-btn.border-style span {
  margin-left: 7px;
  transform: translateY(-1px);
  display: inline-block;
}

.fg-checkout-btn.border-style:hover {
  color: #fff;
  background-color: #00aacc;
  border-color: #00aacc;
}

.fg-checkout-btn:hover {
  border-color: #00aacc;
  color: #000;
  background-color: transparent;
}

.parallax-item {
  will-change: transform;
  transition: transform 0.1s linear;
}

.fg-shop-about-circle-text img {
  animation: rotateCircle 15s linear infinite;
  transform-origin: center center;
  display: block;
}

.fg-footer .btn-outline-light:hover {
  color: #000;
}

.fg-project-area {
  margin-bottom: 150px;
  padding-top: 100px;
  background-color: #f7f7f7;
}

@keyframes rotateCircle {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 767px) {
  .fg-project-area {
    margin-bottom: 60px;
  }
}

.fg-project-item {
  padding: 40px;
  border-radius: 30px;
  border: 4px solid #2a4c3a;
  background-color: var(--fg-common-cream-3);
}

.fg-project-meta {
  position: relative;
}

.fg-project-meta::after {
  position: absolute;
  content: "";
  top: 10px;
  left: 30px;
  height: 1px;
  width: 86%;
  background-color: rgba(42, 76, 58, 0.08);
}

.fg-project-meta span {
  font-weight: 500;
  font-size: 24px;
  line-height: 1;
  color: #2A4C3A;
  font-family: 'Teko', sans-serif;
}

.fg-project-thumb {
  padding-top: 40px;
  padding-bottom: 45px;
  background-repeat: no-repeat;
  background-position: center;
}

.fg-project-title-sm {
  font-weight: 500;
  font-size: 54px;
  line-height: 0.93;
  color: #2a4c3a;
  font-family: 'Teko', sans-serif;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .fg-project-title-sm {
    font-size: 45px;
  }
}

@media (max-width: 767px) {
  .fg-project-title-sm {
    font-size: 27px;
  }

  .fg-project-title-sm br {
    display: none;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .fg-project-title-box {
    margin-bottom: 40px;
  }
}

.fg-section-title-teko {
  font-family: 'Teko', sans-serif;
  font-weight: 600;
  font-size: 150px;
  line-height: 0.73;
  letter-spacing: -0.01em;
  color: #2a4c3a
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .fg-project-title-box .fg-section-title-teko.fs-150 {
    margin-bottom: 20px;
  }
}

.fg-project-content {
  padding-top: 25px;
  border-top: 1px solid rgba(42, 76, 58, 0.08);
}

.fg-project-category a {
  font-weight: 600;
  font-size: 12px;
  line-height: 1;
  color: #2a4c3a;
  padding: 7px 18px;
  border-radius: 10px;
  display: inline-block;
  text-transform: uppercase;
  border: 1px solid rgba(42, 76, 58, 0.1);
  text-decoration: none;
}

.fg-project-category a:hover {
  background-color: #e9edd5;
}

.fg-project-right {
  padding-left: 75px;
  height: 100vh;
  position: sticky;
  overflow: scroll;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .fg-project-right {
    padding-left: 0;
  }
}


.fg-btn-yellow-border {
  letter-spacing: -.01em;
  text-transform: uppercase;
  color: #2a4c3a;
  border: 1px solid #2a4c3a;
  border-radius: 10px;
  padding: 21px 28px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  display: inline-block
}

.fg-btn-yellow-border span {
  z-index: 1;
  display: inline-block;
  position: relative;
  overflow: hidden
}

.fg-btn-yellow-border span span.text-1 {
  transition: all .3s;
  display: block;
  position: relative
}

.fg-btn-yellow-border span span.text-2 {
  transition: all .3s;
  display: block;
  position: absolute;
  bottom: 100%
}

.fg-btn-yellow-border i {
  width: 12px;
  height: 12px;
  margin-left: 7px;
  display: inline-flex;
  position: relative;
  overflow: hidden
}

.fg-btn-yellow-border i svg {
  transition: all .2s ease-out;
  position: absolute;
  bottom: -1px;
  left: 1px;
  transform: translateY(-2px)
}

.fg-btn-yellow-border i svg:last-child {
  opacity: 0;
  bottom: -12px;
  left: -12px;
  transform: translate(0)
}

@media (max-width: 767px) {
  .fg-btn-yellow-border {
    padding: 15px 20px;
    font-size: 14px
  }
}


.fg-line-white {
  display: inline;
  transition: all 0.3s linear;
  background-repeat: no-repeat;
  background-size: 0% 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  background-image: linear-gradient(#2a4c3a, #2a4c3a), linear-gradient(#2a4c3a, #2a4c3a);
  text-decoration: none;
  color: #2a4c3a
}

.fg-line-white.green {
  background-position: 100% 100%, 0 75%;
  background-image: linear-gradient(#2a4c3a, #2a4c3a), linear-gradient(#2a4c3a, #2a4c3a);
}

.fg-line-white.cream {
  background-position: 100% 100%, 0 75%;
  background-image: linear-gradient(#2a4c3a, #2a4c3a), linear-gradient(#2a4c3a, #2a4c3a);
}

.fg-line-white.cream-2 {
  background-image: linear-gradient(#2a4c3a, #2a4c3a), linear-gradient(#2a4c3a, #2a4c3a);
}

.fg-line-white:hover {
  background-size: 0% 1px, 100% 1px;
}

.fg-project-item {
  background-color: #fff;
  border: 1px solid rgba(42, 76, 58, 0.1);
}

.mb-40 {
  margin-bottom: 40px;
}

.fg-shop-about-area {
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: #f7f7f7;
}

.fg-counter {
  background: #f7f7f7;
  padding: 80px 0 100px;
}

.fg-page {
  width: 100%;
  max-width: 90%;
  margin: 0 auto;
  padding: 30px 16px 60px;
}

.fg-title {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 30px;
  color: #222;
}

.fg-countdown-wrapper {
  background: #fff;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 80px;
  gap: 14px;
  margin-bottom: 26px;
}

.fg-countdown-left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 28px;
  white-space: nowrap;
}

.fg-round-btn {
  width: 35px;
  height: 35px;
  border-radius: 50px;
  border: 1px solid #f7f7f7;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  color: #ccc;
}

.fg-timer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.fg-time-group {
  display: flex;
  align-items: center;
  gap: 6px;
}

.fg-digit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 55px;
  background: #f7f7f7;
  color: #111;
  font-weight: 900;
  font-size: 28px;
  border-radius: 8px;
  margin: 0 2px;
}

.fg-timer-sep {
  font-size: 32px;
  font-weight: 700;
  color: #111;
  margin: 0 4px;
}

.fg-time-group small {
  font-size: 13px;
  font-weight: 500;
  color: #555;
  margin-top: 4px;
}

.fg-promo-placeholder {
  border-radius: 18px;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
}

.fg-promo-placeholder img {
  width: 100%;
  /* height: 480px; */
  object-fit: contain;
  object-position: bottom;
  border-radius: 18px;
}

@media (max-width: 650px) {
  .fg-countdown-wrapper {
    flex-direction: column;
    align-items: flex-start;
    border-radius: 18px;
    padding: 20px;
  }

  .fg-tab {
    min-width: 120px;
  }

  .fg-timer {
    gap: 8px;
  }

  .fg-digit {
    width: 38px;
    height: 48px;
    font-size: 24px;
  }
}

@media (max-width: 1400px) {
  .headerfg nav a {
    padding: 12px 15px
  }
}

.fg-homecat {
  padding: 80px 0;
  background-color: #f7f7f7;
}

.fg-homecat-title {
  text-align: left;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #222;
}

.fg-homecat-swiper-arrows {
  display: flex;
  justify-content: end;
  align-items: center;
  height: 100%;
}

.fg-homecat-swiper-arrows .fg-homecat-swiper-btn {
  background-color: transparent;
  border: none;
  box-shadow: unset;
  width: 48px;
  height: 48px;
}

.fg-homecat-swiper-arrows .fg-homecat-swiper-btn {
  font-size: 28px
}

#fg-homecat-swiper .fg-homecat-img {
  height: 470px;
  border-radius: 20px;
  display: block;
}

#fg-homecat-swiper .fg-homecat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: inline-block;
  border-radius: 20px
}

#fg-homecat-swiper .fg-homecat-card .fg-homecat-title2 {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  text-align: center;
  margin-top: 25px;
}

#fg-homecat-swiper a {
  text-decoration: none;

}

#fg-homecat-swiper img {
  transition: .4s linear;
}

#fg-homecat-swiper .fg-homecat-img {
  overflow: hidden;
  position: relative;
  border-radius: 20px;

}

#fg-homecat-swiper .fg-homecat-img:hover img {
  opacity: 1;
  -webkit-animation: flash 1.5s;
  animation: flash 1.5s;
  transform: scale(1.05);
  border-radius: 20px;

}

@-webkit-keyframes flash {
  0% {
    opacity: .4;
  }

  100% {
    opacity: 1;
  }
}

@keyframes flash {
  0% {
    opacity: .4;
  }

  100% {
    opacity: 1;
  }
}
#backToTop {
    position: fixed;
    right: 50px;
    bottom: 50px;
z-index: 9999999;
    width: 50px;
    height: 50px;

    background-color: #00aacc;
    color: #fff;

    border: none;
    border-radius: 50%;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;

    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);

    transition: 
        opacity 0.3s ease,
        transform 0.3s ease,
        visibility 0.3s;
}

#backToTop.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#backToTop:hover {
    background-color: #0090aa;
}


#fg-homecat-swiper a:hover .fg-homecat-title2 {
  color: #00aacc;
}

.fg-threebox {
  padding: 10px 0 120px 0;
  background-color: #f7f7f7;
}

@media(max-width: 992px){
  #backToTop {
    bottom: 70px;
    right: 20px;
}
}

.fg-main-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 40px;
  padding: 0 15px;
}

.fg-product-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.fg-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.fg-product-card img,
.fg-product-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fg-product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
}

.fg-product-title {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.fg-buy-button {
  background-color: white;
  color: #1a1a1a;
  border: none;
  padding: 12px 28px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.fg-buy-button:hover {
  background-color: #f0f0f0;
  transform: scale(1.05);
}

.fg-left-card {
  height: 600px;
}

.fg-right-card {
  height: 290px;
}

.fgcat-section {
  background-color: #fff;
  padding: 60px 0 0 0
}

.py-30 {
  padding: 30px 0;
  background-color: #f7f7f7;
}

.fgcat-section-title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #000;
}

.fgcat-section-btn {
  display: block;
  margin: 0 auto 50px;
  padding: 12px 40px;
  font-size: 15px;
  font-weight: 500;
}

.fgcat-product-card {
  position: relative;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 48px 24px
}

.fgcat-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.fgcat-product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #00aacc1e;
  color: #00aacc;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid #00aacc;
  z-index: 1;
}

.fgcat-product-image {
  position: relative;
  width: 100%;
  padding-top: 60%;
  background: #fff;
  overflow: hidden;
}

.fgcat-product-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.fgcat-product-body {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.fgcat-product-title {
  font-size: 21px;
  font-weight: 600;
  color: #000;
  margin-bottom: 8px;
  line-height: 1.3;
  text-align: center;
  min-height: 50px;
}

.fgcat-product-desc {
  font-size: 14px;
  color: #666;
  margin-bottom: 16px;
  line-height: 1.5;
  flex-grow: 1;
  text-align: center;
}

.fgcat-product-price {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  justify-content: center;
}

.fgcat-price-current {
  font-size: 24px;
  font-weight: 700;
  color: #5C0F1A;
}

.fgcat-price-old {
  font-size: 16px;
  color: #999;
  text-decoration: line-through;
}

.fgcat-product-actions {
  display: flex;
  gap: 12px;
}

.fgcat-product-actions .btn {
  flex: 1;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 14px;
  transition: all 0.3s ease;
}

.btn-dark {
  background-color: #000;
  border-color: #000;
}

.btn-dark:hover {
  background-color: #00aacc;
  border-color: #00aacc;
}

.fgcat-btn-outline {
  background-color: #fff;
  color: #000;
  border: 1px solid #ddd;
}

.fgcat-btn-outline:hover {
  background-color: #f5f5f5;
  border-color: #000;
  color: #000;
}

@media (max-width: 767px) {
  .fgcat-section {
    padding: 40px 0 0 0;
  }

  .fgcat-section-title {
    font-size: 24px;
  }

  .fgcat-product-title {
    font-size: 18px;
  }

  .fgcat-price-current {
    font-size: 20px;
  }
}

@media (max-width: 991px) {
  .fg-left-card {
    height: 500px;
    margin-bottom: 20px;
  }

  .fg-right-card {
    height: 350px;
  }
}

@media (max-width: 576px) {
  .fg-main-title {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 30px;
  }

  .fg-product-title {
    font-size: 1.2rem;
  }

  .fg-left-card {
    height: 400px;
  }

  .fg-right-card {
    height: 300px;
  }

  .fg-product-overlay {
    padding: 20px;
  }

  .fg-buy-button {
    padding: 10px 24px;
    font-size: 0.9rem;
  }
}

.fgcat-shop-control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px 8px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.fgcat-shop-control .fgcat-control-sorting {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

@media (min-width: 1200px) {
  .fgcat-shop-control {
    margin-bottom: 48px;
  }
}

.fgcat-control-layout {
  display: flex;
  align-items: center;
  gap: 15px;
}

.fgcat-control-layout .fgcat-view-layout-switch:hover,
.fgcat-control-layout .fgcat-view-layout-switch.active {
  color: #000;
}

@media (min-width: 992px) {
  .fgcat-control-layout {
    gap: 24px;
  }
}



.fgcat-btn-filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid #EDEDED;
  border-radius: 999px;
  text-wrap: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  padding: 8px 16px;
  color: #000;
  text-decoration: none;
}

.fgcat-btn-filter .icon {
  font-size: 24px;
}

.fgcat-btn-filter:hover {
  border-color: #000;
}

.fgcat-btn-filter.active {
  background-color: #000;
  border-color: #000;
  color: #fff;
}

@media (min-width: 1200px) {
  .fgcat-btn-filter {
    gap: 8px;
    min-width: 180px;
    padding: 15px;
  }
}

.fgcat-shop-control .fgcat-control-sorting {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

@media (min-width: 1200px) {
  .fgcat-shop-control {
    margin-bottom: 48px;
  }
}

.fg-pagination {
  display: flex;
  align-items: center;
  gap: 9px;
}

@media (max-width: 575px) {
  .fg-pagination {
    justify-content: center;
  }
}

.pagination-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-decoration: none;
}

.pagination-item.direct {
  border: 1px solid #EDEDED;
}

.pagination-item.direct:hover {
  border-color: #000;
}

.pagination-item.active,
.pagination-item:hover {
  background-color: #000;
  color: #fff;
}

@media (min-width: 1200px) {
  .pagination-item {
    width: 56px;
    height: 56px;
  }

  .pagination-item .icon {
    font-size: 24px;
  }
}

@media (max-width: 575px) {
  .pagination-item:nth-child(6) {
    display: none;
  }
}

.fgcat-dropdown-sort {
  padding: 8px 16px;
  min-width: 180px;
  border: 1px solid #EDEDED;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 999px;
  position: relative;
}

.fgcat-dropdown-sort .icon {
  font-size: 14px;
  display: inline-block;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-bottom: 2px;
}

/* Container */
.fgcat-control-sorting {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Pill style button */
.fgcat-dropdown-sort .btn-select {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 18px;
  border-radius: 40px;
  background: #fff;
  color: #111;
  /* border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 8px rgba(16, 24, 40, 0.04); */
  min-width: 220px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
}

/* Chevron icon */
.fgcat-dropdown-sort .btn-select .icon {
  font-size: 14px;
  transition: transform .22s ease;
}

/* Open state - rotate icon */
.fgcat-dropdown-sort.open .btn-select .icon {
  transform: rotate(180deg);
}

/* Dropdown menu */
.fgcat-dropdown-sort .dropdown-menu {
  position: absolute;
  margin-top: 8px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.12);
  padding: 6px;
  min-width: 220px;
  z-index: 1200;
  display: none;
  max-height: 320px;
  overflow-y: auto;
}

/* Show menu */
.fgcat-dropdown-sort.open .dropdown-menu {
  display: block;
}

/* Option items */
.fgcat-dropdown-sort .select-item {
  padding: 10px 14px;
  /* border-radius: 8px; */
  cursor: pointer;
  color: #1f2937;
  font-weight: 600;
  transition: background .12s ease, color .12s ease;
  display: flex;
  align-items: center;
}

/* hover/focus */
.fgcat-dropdown-sort .select-item:hover,
.fgcat-dropdown-sort .select-item:focus {
  background: rgba(0, 0, 0, 0.04);
  outline: none;
}

/* active item style */
.fgcat-dropdown-sort .select-item.active {
  background: #0b1220;
  /* color: #fff; */
}

/* small screens adjust */
@media (max-width: 576px) {
  .fgcat-dropdown-sort .btn-select {
    min-width: 160px;
    padding: 8px 14px;
  }

  .fgcat-dropdown-sort .dropdown-menu {
    min-width: 160px;
  }
}


.fgcat-dropdown-sort .text-sort-value {
  text-wrap: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #000;
}

.fgcat-dropdown-sort .dropdown-menu {
  min-width: 240px;
  border: 1px solid #EDEDED;
  padding: 10px 5px;
  border-radius: 0px;
  overflow-y: auto;
  z-index: 99;
}

.fgcat-dropdown-sort .dropdown-menu::-webkit-scrollbar {
  width: 3px;
}

.fgcat-dropdown-sort .dropdown-menu::-webkit-scrollbar-thumb {
  border-radius: 4px;
}

.fgcat-dropdown-sort .select-item {
  position: relative;
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  color: #000;
  padding: 0 15px;
  line-height: 30px;
  width: 100%;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.fgcat-dropdown-sort .select-item:hover,
.fgcat-dropdown-sort .select-item.active {
  background-color: #ebebeb;
}

.fgcat-dropdown-sort:hover {
  border-color: #000;
}


.canvas-filter .canvas-header {
  box-shadow: 0px 4px 10px 0px rgba(212, 212, 212, 0.2509803922);
}

.canvas-filter .canvas-bottom {
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0px -4px 10px 0px rgba(212, 212, 212, 0.2509803922);
}

.canvas-filter .canvas-bottom>* {
  width: 100%;
}

@media (min-width: 1200px) {

  .canvas-filter .canvas-header,
  .canvas-filter .canvas-body,
  .canvas-filter .canvas-bottom {
    padding: 32px 40px;
  }
}

@media (max-width: 767px) {
  .canvas-filter {
    max-width: 325px;
  }
}

.offcanvas {
  border: none !important;
  color: #000;
  z-index: 3000;
}

.offcanvas .icon-close-popup {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  background: transparent;
  font-size: 16px;
  padding: 10px;
  border: none;
  color: #000;
  z-index: 10;
}

.offcanvas .icon-close-popup:hover {
  color: var(--primary);
}

.offcanvas .icon-close-popup.type-right {
  top: 16px;
  right: 16px;
}

.offcanvas .offcanvas-content {
  height: 100%;
}

.offcanvas.offcanvas-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) !important;
  opacity: 0;
  visibility: hidden;
  max-width: calc(100vw - 30px);
}

.offcanvas {
  z-index: 999999;
}

.offcanvas.offcanvas-center.show {
  visibility: visible;
  opacity: 1;
}

.offcanvas-backdrop {
  z-index: 2999;
  cursor: url(../images/cursor-close.svg), auto;
}

.overflow-x-auto::-webkit-scrollbar,
.overflow-y-auto::-webkit-scrollbar {
  width: 0px;
}


.canvas-sidebar {
  max-width: 320px;
  width: 100%;
}

.canvas-sidebar .blog-sidebar {
  max-width: unset;
}

@media (min-width: 992px) {
  .canvas-sidebar {
    max-width: 535px;
    width: 100% !important;
  }
}

.canvas-wrapper {
  padding: 0;
  isolation: isolate;
  height: 100%;
  width: 100%;
  max-height: none;
  display: grid;
  grid-auto-rows: auto minmax(0, 1fr) auto;
  align-content: start;

}

.canvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  position: relative;
  text-transform: capitalize;
}

.canvas-header .icon-close-popup {
  height: 32px;
  width: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

@media (min-width: 1200px) {
  .canvas-header {
    padding: 32px;
  }
}

.canvas-body {
  background-color: #fff;
  padding: 10px 24px;
  overscroll-behavior-y: contain;
  overflow-y: auto;
  flex: 1;
}

.border-radius-12 {
  border-radius: 12px;
}

.canvas-body::-webkit-scrollbar {
  width: 5px;
}

.canvas-body::-webkit-scrollbar-track {
  background-color: #fff;
}

.canvas-body::-webkit-scrollbar-thumb {
  background: #000;
  border-radius: 4px;
}

@media (min-width: 1200px) {
  .canvas-body {
    padding: 24px 32px 15px;
  }
}

.canvas-footer,
.canvas-bottom {
  padding: 16px 24px 24px;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
}

.modal-log .modal-top .title {
  margin-bottom: 30px;
}

.modal-log .modal-content {
  padding: 32px;
}

.modal-log .modal-bottom {
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}

.modal-log .other-login {
  display: grid;
  gap: 15px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .modal-log .modal-top .title {
    margin-bottom: 52px;
  }
}

@media (min-width: 1200px) {
  .modal-log .modal-content {
    padding-bottom: 100px;
  }

  .modal-log .modal-dialog {
    max-width: 934px;
  }
}

@media (max-width: 575px) {
  .modal-log .modal-content {
    padding: 20px 15px;
  }
}

.canvas-sidebar .icon-close-popup {
  font-size: 24px;
}

.canvas-sidebar .sub-title {
  margin-bottom: 20px;
}

@media (min-width: 1200px) {
  .canvas-sidebar .sub-title {
    margin-bottom: 32px;
  }
}

.popup-body {
  overscroll-behavior-y: contain;
  overflow-y: auto;
  padding: 20px;
}

@media (min-width: 1200px) {
  .popup-body {
    padding: 20px 32px;
  }
}

.fg-overlay-category {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.fg-overlay-category.active {
  opacity: 1;
  visibility: visible;
}

.fg-overlay-category-links {
  list-style: none;
  padding: 0 30px;
}

.fg-overlay-category-links li {
  border-bottom: 1px solid #f0f0f0;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.fg-overlay-category.active .fg-overlay-category-links li {
  opacity: 1;
  transform: translateX(0);
}

.fg-overlay-category.active .fg-overlay-category-links li:nth-child(1) {
  transition-delay: 0.1s;
}

.fg-overlay-category.active .fg-overlay-category-links li:nth-child(2) {
  transition-delay: 0.15s;
}

.fg-overlay-category.active .fg-overlay-category-links li:nth-child(3) {
  transition-delay: 0.2s;
}

.fg-overlay-category.active .fg-overlay-category-links li:nth-child(4) {
  transition-delay: 0.25s;
}

.fg-overlay-category.active .fg-overlay-category-links li:nth-child(5) {
  transition-delay: 0.3s;
}

.fg-overlay-category.active .fg-overlay-category-links li:nth-child(6) {
  transition-delay: 0.35s;
}

.fg-overlay-category.active .fg-overlay-category-links li:nth-child(7) {
  transition-delay: 0.4s;
}

.fg-overlay-category.active .fg-overlay-category-links li:nth-child(8) {
  transition-delay: 0.45s;
}

#filterShop ul {
  margin: 0 0 0 0;
  padding: 0 0 32px 0
}

.widget-facet .facet-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #000;
}

.widget-facet .facet-title .h4 {
  font-size: 18px;
}

.widget-facet .facet-title .icon {
  transform: rotate(0deg);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.widget-facet .facet-title.collapsed {
  margin-bottom: 32px;
}

.widget-facet .facet-title.collapsed .icon {
  transform: rotate(180deg);
}

.widget-facet:not(:last-child) .collapse-body {
  padding-bottom: 32px;
  padding-left: 0
}

.filter-group-check.group-category a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  color: #5F615E;
  text-decoration: none;
  font-size: 14px
}

.filter-group-check .list-item {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  cursor: pointer;
  margin-right: 10px;
}

#category .filter-group-check .list-item {
  display:flex;
  gap: 15px
}

.filter-group-check .list-item:not(:last-child) {
  margin-bottom: 12px;
}

.filter-group-check .label {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  font-size: 14px
}

.filter-group-check .label>*:first-child {
  flex: 1;
}

@media (min-width: 1200px) {
  .filter-group-check .list-item {
    font-size: 18px;
    line-height: 24px;
    color: #5F615E;
  }
}

.filter-size-box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-size-box .size-item {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #EDEDED;
  background-color: #fff;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  border-radius: 50%;
  color: #5F615E;
}

.filter-size-box .size-item.active,
.filter-size-box .size-item:hover {
  background-color: #000;
  color: #fff;
}

.filter-size-box .size-item.disabled {
  color: #000;
  pointer-events: none;
}

.filter-size-box .size-item.disabled::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 53.568px;
  height: 1px;
  background-color: #000;
  transform: rotate(45deg);
  transform-origin: top left;
}

.filter-size-box .size-item.over-size {
  width: 120px;
  border-radius: 999px;
}

@media (min-width: 1200px) {
  .filter-size-box .size-item {
    width: 56px;
    height: 56px;
  }
}

.filter-color-box {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-color-box .color-item {
  width: 32px;
  height: 32px;
  display: block;
  border-radius: 50%;
  border: 1px solid #EDEDED;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: #fff;
  cursor: pointer;
  padding: 4px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.filter-color-box .color-item .color {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
}

.filter-color-box .color-item.active {
  border-color: #000 !important;
}

.filter-color-box .color-text {
  display: none;
}

@media (min-width: 1200px) {
  .filter-color-box .color-item {
    width: 40px;
    height: 40px;
  }
}

.fgcat-check {
  position: relative;
  background: transparent;
  cursor: pointer;
  outline: 0;
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  min-width: 24px;
  border: 1px solid #EDEDED;
  padding: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.fgcat-check:checked {
  border-color: #000;
  background-color: #000;
}

.fgcat-check:checked::before {
  opacity: 1;
  transform: scale(1);
}

.fgcat-check::before {
  font-weight: 900;
  font-family: "Font Awesome 7 Free";
  content: "\f00c";
  position: absolute;
  color: #fff;
  opacity: 0;
  font-size: 16px;
  transform: scale(0);
  transition: all 0.3s ease;
}


.fgcat-check.style-2 {
  width: 22px;
  height: 22px;
  min-width: 22px;
}

.fgcat-check.style-2::before {
  font-size: 14px;
}

.fgcat-check.style-3 {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 2px;
}

.fgcat-check.style-3::before {
  font-size: 12px;
}

.fgcat-check.style-white {
  background-color: #000;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.checkbox-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkbox-wrap input {
  padding: 0;
}

.checkbox-wrap label {
  cursor: pointer;
}

.checkbox-wrap .type-2 {
  gap: 8px;
}

.fgcat-field {
  position: relative;
}

.fgcat-field .fgcat-input {
  padding: 22px 0px 3px !important;
}

.fgcat-field .fgcat-input:not(:placeholder-shown)~.fgcat-lable,
.fgcat-field .fgcat-input:focus~.fgcat-lable {
  top: 0;
  transform: translateY(0%);
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0;
}

.fgcat-field .fgcat-input::placeholder {
  color: transparent;
}

.fgcat-field .fgcat-lable {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  cursor: text;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.32px;
  pointer-events: none;
}

.fgcat-field .fgcat-lable.type-2 {
  top: 22px;
  transform: 0;
}

.fgcat-check-rounded {
  padding: 0 !important;
  position: relative;
  border: 1px solid #9a9a9a;
  border-radius: 50%;
  background: none;
  cursor: pointer;
  outline: 0;
  height: 16px;
  width: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  -webkit-appearance: none;
}

.fgcat-check-rounded::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  background-color: #000;
  opacity: 0;
}

.fgcat-check-rounded:checked {
  border-color: #000;
}

.fgcat-check-rounded:checked::before {
  opacity: 1;
}

.fgcat-check-rounded.style-2 {
  background-color: var(--bg-2);
  border-color: var(--bg-2);
  width: 18px;
  height: 18px;
}

.fgcat-check-rounded.style-2:checked {
  border-color: #000;
  background-color: #fff;
}

.fgcat-check-rounded.style-2::before {
  width: 10px;
  height: 10px;
}

@media (min-width: 1200px) {
  .fgcat-check-rounded {
    height: 18px;
    width: 18px;
  }

  .fgcat-check-rounded::before {
    width: 10px;
    height: 10px;
  }

  .fgcat-check-rounded.style-2 {
    width: 22px;
    height: 22px;
  }

  .fgcat-check-rounded.style-2::before {
    width: 16px;
    height: 16px;
  }
}

.widget-facet .facet-title.collapsed .fa.fa-chevron-down:before {
  content: "\f077";
}

@media(max-width:992px) {
  .fgcat-product-card {
    padding: 24px 12px
  }
}

#fg-product-detail {
  position: relative;
}

.fg-product-detail-breadcrumb {

  border-bottom: 1px solid #ebebeb;
  padding: 20px 0;
}

.fg-product-detail-breadcrumb ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  font-size: 13px;
}

.fg-product-detail-breadcrumb li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}

.fg-product-detail-breadcrumb a {
  color: #3f3f3f;
  color: #00aacc;
  text-decoration: none;
  font-size: 16px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.fg-product-detail-breadcrumb a:hover {
  color: #000;
  text-decoration: underline;
}

.fg-product-detail-breadcrumb li[aria-current="page"] {
  color: #000;
  font-weight: 600;
}

.fg-product-detail-breadcrumb li+li::before {
  content: "›";
  color: #6b6b6b;
  margin-right: calc(10px - 6px);
  margin-left: calc(10px - 6px);
  font-size: 12px;
}

.fg-product-detail-breadcrumb li:first-child a {
  padding-left: 0;
}

@media(max-width: 992px) {
  .fg-product-detail-breadcrumb {
    padding: 10px 0
  }

  .fg-product-detail-breadcrumb ol {
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
    white-space: normal;
  }

  .fg-product-detail-breadcrumb li {
    max-width: 100%;
    white-space: normal;
  }

  .fg-product-detail-breadcrumb li+li::before {
    margin: 0 2px;
  }
}

.fg-product-detail-header {
  background-color: #37393f;
  position: sticky;
  top: 59px;
  z-index: 999;
}

.fg-product-detail-header.fg-product-detail-header-fixed-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  top: unset;
  z-index: 999;
}

.fg-product-detail-header .container {
  height: 50px;
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  width: 100%;
  align-items: center;
  font-weight: bold;
}

.fg-product-detail-header .fg-product-top-title {
  color: #fff;
  margin: 0;
  font-size: 16px;
  flex: 1.5
}

.fg-product-detail-header .fg-product-top-button {
  border-radius: 20px;
  font-size: 14px;
  border: none;
  height: 30px;
  color: #ffffff;
  padding: 0 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1
}

.fg-product-detail-header .fg-product-top-button a {
  max-width: 170px;
  background-color: #00aacc;
  justify-content: center;

}

.fg-video-part {
  position: relative;
  height: 700px;
}

@media(max-width: 992px) {
  .fg-video-part {
    height: 210px;
  }
}

.fg-video-part video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fg-product-banner-single {
  position: relative;
  background: #f8f9fa;
  padding: 40px 0;
}

.fg-product-banner-single img {
  width: 100%;
  object-fit: contain;
}

.fg-product-swiper-part {
  width: 100%;
  margin: 0 auto;
  padding-top: 10px;
  padding-bottom: 60px;
  text-align: center;
  box-sizing: border-box;
  background-color: #424242;
  color: white;
}

.fg-product-section-swiper {
  width: 100%;
  margin: 30px 0 0 0;
  position: relative;
  overflow: hidden;
}

.fg-product-section-swiper .swiper-button-next {
  right: 20px;
}

.fg-product-section-swiper .swiper-button-prev {
  left: 20px;
}

.fg-product-section-swiper .swiper-button-next,
.fg-product-section-swiper .swiper-button-prev {
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  transition: all 0.3s ease;
}

.fg-product-section-swiper .swiper-button-next:hover,
.fg-product-section-swiper .swiper-button-prev:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

.fg-product-section-swiper .swiper-button-next::after,
.fg-product-section-swiper .swiper-button-prev::after {
  color: #fff;
}

.fg-product-section-swiper .swiper-button-next i,
.fg-product-section-swiper .swiper-button-prev i {
  color: #000;
  font-size: 12px
}

.fg-product-section-swiper .swiper-button-next svg,
.fg-product-section-swiper .swiper-button-prev svg {
  display: none;
}

.fg-product-section-swiper img {
  width: 100%;
  object-fit: contain;
}

.fg-product-swiper-title {
  font-size: 18px;
  font-weight: bold;
  margin: 40px 0 20px 0;
}

.fg-product-swiper-text {
  font-size: 14px;
}

.fg-product-banner-two-part {
  position: relative;
  background: #f8f9fa;
  padding: 40px 0;
}

.fg-product-banner-two-part img {
  width: 100%;
  object-fit: contain;
}

.fg-product-banner-two-title {
  color: #333;
  font-size: 15px;
  text-align: center;
  margin-bottom: 10px;
  margin-top: 20px;
  font-weight: bold;
}

.fg-product-banner-two-text {
  font-size: 12px;
  text-align: center;
}

.fg-product-counter-part {
  padding: 80px 0;
}

.fg-product-counter-part .fg-product-counter-number {
  background: linear-gradient(295.85deg, #00babf 0%, #9ae2fb 100%);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 4px;
  width: 100%;
  height: 100%;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -moz-box-pack: center;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 40px;
  position: relative;
}

@media(max-width: 992px) {
  .fg-product-counter-part .fg-product-counter-number {
    padding: 40px 0;
  }

  .fg-product-detail-header {
    top: 50px
  }
}

.fg-product-counter-part .fg-product-counter-number img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right;
}

.fg-product-counter-part .fg-product-counter-number span {
  font-size: 48px;
  font-weight: bold;
  position: relative;
  z-index: 99;
  color: #000;
  line-height: 1.3;
}

.fg-product-counter-part .fg-product-counter-number .counter {
  font-size: 68px;

}

.fg-product-counter-part .fg-product-counter-number .counter-text {
  font-size: 14px;
  position: relative;
  z-index: 99;
  margin-top: 10px;
}

.fg-product-counter-part .fg-product-counter-title {
  background: linear-gradient(91.8deg, #ff3b00 -.75%, #f80 89.6%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  width: auto;
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 20px
}

.fg-product-counter-part .fg-product-counter-text {
  font-size: 36px;
  margin-bottom: 50px;
  font-weight: bold;
  color: #000
}

.fg-product-counter-part .fg-product-counter-bottom-text {
  font-size: 18px;
  color: #202020;
  text-align: center;
  margin: 40px 0 0 0
}

.fg-product-zigzag-part {
  padding: 80px 0;
}

.fg-product-zigzag-part .fg-product-zigzag-title {
  background: #00aacc;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  width: auto;
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 20px
}

.fg-product-zigzag-part .fg-product-zigzag-text {
  font-size: 36px;
  margin-bottom: 50px;
  font-weight: bold;
  color: #000
}

.fg-product-zigzag-part .fg-product-zigzag-bottom-text {
  font-size: 18px;
  color: #202020;
  text-align: center;
  margin: 40px 0 0 0
}

.fg-zigzag-box {
  padding: 0 0 150px 30px;
  border: 1px solid #e4e4e4;
}

.fg-product-zigzag-part .fg-zigzag-text {
  display: flex;
  height: 100%;
  align-items: end;
  font-size: 54px;
  font-weight: 700;
  margin: 0
}

.fg-product-zigzag-part .fg-zigzag-desc {
  font-size: 18px;
  font-weight: 400;
}

.fg-product-pack-part {
  background-color: #f9f9f9;
  padding: 65px 0;
}

.fg-product-pack-part .fg-product-pack-title {
  color: rgba(0, 0, 0, .8);
  font-size: 38px;
  text-align: center;
  font-weight: 700;
  margin-bottom: 20px;
}

.fg-product-pack-part .fg-product-pack .fg-pack-text {
  font-size: 16px;
  font-weight: 600;
  margin: 10px 0 0 0
}

.fg-vertical-zigzag {
  padding: 0 0 70px 0;
}

.fg-vertical-zigzag .row {
  padding: 70px 0 0 0;
}

.fg-vertical-zigzag img {
  border-radius: 20px;
}

.fg-li-tr .fg-vertical-zigzag-box {
  padding: 60px 160px 60px 0px;
}

.fg-ri-tl .fg-vertical-zigzag-box {
  padding: 60px 0px 60px 70px;
}

.fg-vertical-zigzag-title {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #000;
}

.fg-vertical-zigzag-text {
  font-size: 15px;
  font-weight: 400;
  color: #0009;
}

.fg-product-faq {
  padding: 65px 0;
}

.fg-product-faq .fg-accordion-section {}

.fg-product-faq .fg-image-section {

  position: sticky;
  top: 50px;
}

.fg-product-faq .accordion-button {
  font-size: 18px;
  font-weight: 600;
  color: #212529;
  background-color: #fff;
  padding: 20px 25px;
  border: none;
  box-shadow: none;
}

.fg-product-faq .accordion-button:not(.collapsed) {
  background-color: #fff;
  color: #212529;
  box-shadow: none;
}

.fg-product-faq .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.fg-product-faq .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.fg-product-faq .accordion-item {
  border: none;
  background-color: #fff;
  margin-bottom: 2px;
}

.fg-product-faq .accordion-body {
  padding: 20px 25px;
  color: #6c757d;
  font-size: 15px;
  line-height: 1.6;
}

.fg-product-faq .accordion {
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
}

.fg-product-faq .fg-robot-image {
  width: 100%;
  height: 450px;
  border-radius: 0;
  box-shadow: none;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.fg-product-faq .fg-footnote {
  font-size: 13px;
  color: #6c757d;
  margin-top: 20px;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .fg-product-faq .fg-image-section {
    position: relative;
    top: 0;
    order: -1;
  }
}


.fgsubcat-list {
  padding: 60px 0 
}

.fg-gray-subcat {
  background-color: #f4f6f7;
  padding: 20px;
  border-radius: 8px;
}

.fg-gray-subcat img {
  width: 100px;
  height: auto;
  object-fit: contain;
}

.fg-gray-subcat h6 {
  color: #242422;
  font-weight: 700;
  font-size: 20px
}

#fg-product-info-main {
  padding: 65px 0;
  position: relative;
}

.fg-product-info-main .fg-gallery {
  position: relative;
  display: flex;
  flex-direction: column;
  height: fit-content;
}

.fg-product-info-main .fg-main-swiper {
  width: 100%;
  margin-bottom: 15px;
  overflow: hidden;
  flex: 6;
}
.fg-product-info-main .fg-gallery .fg-slider-arrow {
  top: 50%;
}

.swiper-vertical>.swiper-wrapper {
  justify-content: center;
}

@media(max-width:992px) {
  .swiper-vertical>.swiper-wrapper {
    flex-direction: row;
  }

  .fg-product-info-main .fg-thumb-swiper {
    order: 2 !important;
    flex: 6;
  }

  .fg-product-info-main .fg-gallery {
    position: relative;
    flex-direction: column;
  }

  .fg-product-info-main .fg-main-swiper {
    margin-bottom: 0 !important;
  }
}

.fg-product-info-main .fg-main-swiper .swiper-slide {
  display: flex;
  justify-content: center;
}

.fg-product-info-main .fg-main-swiper .swiper-slide img {
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 15px;
}

.fg-product-info-main .fg-thumb-swiper {
  position: relative;
  width: 100%;
  flex: 1;
}

.fg-product-info-main .fg-thumb-swiper .swiper-slide {
  /* width: 80px; */
  height: 80px;
  opacity: 0.5;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.fg-product-info-main .fg-thumb-swiper .swiper-slide:hover {
  opacity: 0.8;
}

.fg-product-info-main .fg-thumb-swiper .swiper-slide-thumb-active {
  opacity: 1;
  border-color: #000;
}

.fg-product-info-main .fg-thumb-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fg-product-info-main .fg-product-info {
  padding: 0 15px;
}

.fg-product-info-main .fg-product-title {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.3;
  color: #000;
  text-shadow: unset;
}

.fg-product-info-main .fg-rating {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fg-product-info-main .fg-stars {
  color: #ffc107;
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.fg-product-info-main .fg-review-count {
  color: #666;
  font-size: 0.9rem;
}

.fg-product-info-main .fg-features {
  list-style: none;
  padding: 0;
}

.fg-product-info-main .fg-features li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
  color: #333;
}

.fg-product-info-main .fg-features li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #000;
  font-weight: bold;
  font-size: 1.2rem;
}

.fg-product-info-main .fg-price-box {
  display: flex;
  align-items: center;
  gap: 15px;
}

.fg-product-info-main .fg-price-current {
  font-size: 2rem;
  font-weight: 700;
  color: #5C0F1A;
}

.fg-product-info-main .fg-price-old {
  font-size: 1.25rem;
  color: #666;
  text-decoration: line-through;
}

.fg-product-info-main .fg-btn-add,
.fg-product-info-main .fg-btn-buy {
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
  border: 1px solid #00aacc;
}

.fg-product-info-main .fg-btn-add:hover {
  background: #00aacc;
  border-color: #00aacc;
  color: white;
}

.fg-product-info-main .fg-btn-buy, .product-bottom-fixed  .fg-btn-buy {
  background: #00aacc;
  border-color: #00aacc;
}
 .product-bottom-fixed  .fg-btn-buy {
    width: auto !important;
    border-radius: 30px;
    padding: 10px 40px;
}
.fg-product-info-main .fg-btn-buy:hover, .product-bottom-fixed  .fg-btn-buy:hover {
  background: #333;
  border-color: #333;
}

.fg-product-info-main .fg-payment-methods {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.fg-product-info-main .fg-payment-methods img {
  height: auto;
  width: 70%;
}

.fg-product-info-main .fg-info-grid {
  margin-top: 20px;
}

.fg-product-info-main .fg-info-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
  transition: all 0.3s ease;
  justify-content: center;
}

.fg-product-info-main .fg-info-card:hover {
  background: #e9ecef;
}

.fg-product-info-main .fg-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.fg-product-info-main .fg-info-card span {
  font-size: 12px;
  font-weight: 500;
}

.fg-product-info-main .fg-contact {
  padding-top: 20px;
  border-top: 1px solid #ddd;
}

.fg-product-info-main .fg-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.fg-product-info-main .fg-contact-item .fg-icon {
  margin-top: 3px;
}

.fg-product-info-main .fg-contact-item div {
  font-size: 0.9rem;
  line-height: 1.6;
}

@media (max-width: 991px) {
  .fg-product-info-main .fg-product-title {
    font-size: 1.5rem;
  }

  .fg-product-info-main .fg-price-current {
    font-size: 1.75rem;
  }

  .fg-product-info-main .fg-thumb-swiper .swiper-slide {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 576px) {
  .fg-product-info-main .fg-product-info {
    padding: 0;
  }

  .fg-product-info-main .fg-thumb-swiper .swiper-slide {
    width: 60px;
    height: 60px;
  }

  .fg-product-info-main .fg-payment-methods img {
    height: 25px;
  }
}

.fg-product-info-main .fg-contact .fg-info-card div {
  font-size: 13px;
}

.fg-product-text-gsap-animate {
  padding: 65px 0;
  position: relative;
  overflow: hidden;
}

.fg-product-text-gsap-animate .container {
  position: relative;
  overflow: visible;
  /* robot genişse taşıyor olmasın istersen hidden yap */
}

#robot {
  width: 240px;
  user-select: none;
  -webkit-user-drag: none;
  position: absolute;
  pointer-events: none;

  left: 0;
  top: -65px;

  animation: moveRobot 10s forwards;
}



@keyframes moveRobot {
  from {
    left: 0;
    transform: rotate(0deg);
  }

  to {
    left: calc(100% - 240px);
    transform: rotate(720deg);
  }
}

.fg-product-text-gsap-animate figure {
  margin: 0;
  display: flex;
  justify-content: center;
}

.fg-product-text-gsap-animate svg {

  width: 60%;
}

@media(max-width:992px) {
  #robot {
    /* width: 120px */
    display: none
  }

  .fg-product-text-gsap-animate svg {
    width: 100%;
  }
}

.fg-product-text-gsap-animate svg>* {
  fill: #1c1c1c;
  stroke: #1c1c1c;
  stroke-width: 0.85px;
}

.cls-1 {
  fill: #0ac;
  stroke: #0ac;
}

@keyframes tip {

  0%,
  100% {
    opacity: 0;
  }

  10%,
  80% {
    opacity: 1;
  }
}





.fg-product-detail-scroll-swiper {
  padding: 80px 0;
}


.fg-product-detail-scroll-swiper .mySwiper {
  width: 100%;
  padding: 0;
}

.fg-product-detail-scroll-swiper .mySwiper .swiper-slide {
  width: 420px;
  height: 550px;
  border-radius: 24px;
  overflow: hidden;
  transition: 0.4s;
  opacity: 0.6;
  transform: scale(0.85);
}

@media(max-width:992px) {
  .fg-product-detail-scroll-swiper {
    padding: 40px 20px;
  }

  .fg-product-detail-scroll-swiper .mySwiper .swiper-slide {
    height: 420px;
  }
}

.fg-product-detail-scroll-swiper .mySwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fg-product-detail-scroll-swiper .mySwiper .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
  z-index: 10;
}

.fg-scroll-swiper-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
  color: #000;
  text-shadow: unset;
}

.fg-scroll-swiper-subtitle {
  font-size: 1rem;
  color: #6c757d;
  margin-top: 20px;
  line-height: 1.6;
  margin-bottom: 80px
}

.fg-right-focused-swiper-title {
  font-size: 42px;
  font-weight: 700;
  margin: 0 0 18px 0;
  color: #111;
}

.fg-right-focused-swiper-subtitle {
  color: #666;
  margin: 0 0 28px 0;
  font-size: 16px;
}

/* swiper container - sol kenardan başlayacak */
.fg-right-focused-swiper .mySwiper {
  width: 100%;
  box-sizing: border-box;
  /* slider'ı içeri çekmeden sol kenardan başlaması için padding-left:0 */
  padding-left: 0;
  position: relative;
}

.fg-right-focused-swiper .mySwiper .swiper-wrapper {
  align-items: center;
}

.fg-right-focused-swiper .mySwiper .swiper-slide {
  width: 420px;
  height: 420px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.36s ease, filter 0.36s ease, opacity 0.36s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ddd;
}

.fg-right-focused-swiper .mySwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fg-right-focused-swiper .mySwiper .swiper-slide:not(.swiper-slide-active) {
  filter: brightness(0.55) saturate(0.9);
  opacity: 0.95;
  transform: scale(0.995);
}

.fg-right-focused-swiper .mySwiper .swiper-slide.swiper-slide-active {
  filter: none;
  opacity: 1;
  transform: scale(1);
}

/* navigation butonları */
.fg-right-focused-swiper .swiper-button-custom {
  width: 44px;
  height: 44px;
  border-radius: 22px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.14);
  color: #111;
  cursor: pointer;
}

.fg-right-focused-swiper .swiper-button-custom.disabled {
  opacity: 0.4;
  pointer-events: none;
}

.fg-right-focused-swiper .swiper-button-prev {
  left: -10px;
}

.fg-right-focused-swiper .swiper-button-next {
  right: -10px;
}

/* alt dots (opsiyonel) */
.fg-right-focused-swiper .custom-dots {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.fg-right-focused-swiper .custom-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.2);
}

.fg-right-focused-swiper .custom-dots .dot.active {
  background: #111;
  width: 28px;
  border-radius: 999px;
  height: 10px;
}

/* responsive */
@media (max-width: 1150px) {
  .fg-right-focused-swiper .mySwiper .swiper-slide {
    width: 360px;
    height: 360px;
    border-radius: 14px;
  }
}

@media (max-width: 820px) {
  .fg-right-focused-swiper .section-inner {
    padding: 0 20px;
  }

  .fg-right-focused-swiper .mySwiper .swiper-slide {
    width: 88vw;
    height: 56vw;
    border-radius: 12px;
  }

  .fg-right-focused-swiper .swiper-button-prev,
  .fg-right-focused-swiper .swiper-button-next {
    display: none;
  }
}

.fg-product-detail-tab-container {
  background: #f8f9fa;
  padding: 20px 0;
}

.fg-product-detail-tab-nav {
  margin-bottom: 30px;
  justify-content: center;
  gap: 20px;
}

.fg-product-detail-tab-button {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  color: #949494;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .02em;
  text-align: left;
  padding-inline: 24px;
  background-color: transparent;
  border-radius: 8px;
  box-shadow: 0 2px 14.7px #e3e3e340;
  border: 0;
  width: 220px;
  background-color: #fff;
}

.fg-product-detail-tab-button:hover {
  color: #212529;
}

.fg-product-detail-tab-button.active {
  color: #fff;
  background-color: #00aacc;
}

.fg-product-detail-tab-content {
  display: none;
  animation: fadeIn 0.3s ease-in;
}

.fg-product-detail-tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fg-product-detail-tab-section {
  background: white;
  padding: 55px 20px;
  border-radius: 8px;
}

.fg-product-detail-tab-section li {
  margin-bottom: 20px;
}

.fg-product-detail-tab-title {
  font-size: 26px;
  font-weight: 700;
  color: #212529;
  margin-bottom: 50px;
  margin-top: 25px;
  text-align: center;
}
@media(max-width: 992px) {
  .fg-product-detail-tab-title {margin-bottom: 25px}
}
.fg-product-detail-tab-title:first-child {
  margin-top: 0;
}

.fg-product-detail-tab-text {
  color: #495057;
  line-height: 1.8;
  margin-bottom: 15px;
}

.fg-product-detail-tab-highlight {
  background: #fff3cd;
  padding: 2px 6px;
  border-radius: 3px;
}

@media (max-width: 768px) {
  .fg-product-detail-tab-button {
    padding: 12px 15px;
    font-size: 14px;
  }

  .fg-product-detail-tab-section {
    padding: 20px;
  }
}

.fg-product-detail-tab-technical-item {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  row-gap: 8px;
  padding: 12px 0;
  border-top: 0;
  position: relative;
  width: 50%;
  /* border-bottom: 1px solid rgba(119, 119, 119, .2); */
}

.fg-product-detail-tab-technical-item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(119, 119, 119, .2);
}

.fg-product-detail-tab-technical-item-title {
  color: rgba(0, 0, 0, .8);
  font-weight: 700;
  font-size: 18px;
}

.fg-product-detail-tab-technical-item-text {
  font-size: 17px;
  font-weight: 400;
}

.fg-product-shipping {
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 17px;
    color: #000;
    font-size: 14px;
    font-weight: 600;
    margin-top: 12px;
    margin-bottom: 12px;
    padding: 8px;
    border: 1px solid #0000004d;
    background: #f3f4f5;
    border-radius: 4px;
    width: fit-content;
}

i.fa.fa-circle {
  font-size: 6px;
  margin-top: -11px;
}

.fgcat-dropdown-sort .select-item:hover,
.fgcat-dropdown-sort .select-item.active {}

.rating-box .rating-container label {
  margin: 0 -3px !important;
  color: #00aacc!important
}
/* Overlay */
.fg-catsidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease;
  z-index: 999;
}

/* Panel */
.fg-catsidebar-panel {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 320px;
  max-width: 92vw;
  background: #f6f7f8;
  box-shadow: 2px 0 18px rgba(0,0,0,0.08);
  transform: translateX(-110%);
  transition: transform .32s cubic-bezier(.2,.9,.2,1);
  z-index: 9999999999;
  overflow: visible; /* BURASI ÖNEMLİ - visible olmalı */
  -webkit-overflow-scrolling: touch;
}

.fg-catsidebar-panel.open {
  transform: translateX(0);
}

.fg-catsidebar-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* İç bölüm - Scroll burada olacak */
.fg-catsidebar-inner {
  padding: 26px 0;
  height: 100vh;
  overflow-y: auto; /* SCROLL BURAYA TAŞINDI */
  overflow-x: visible;
  -webkit-overflow-scrolling: touch;
}

/* Close button */
.fg-catsidebar-close {
  position: absolute;
  right: 14px;
  top: 25px;
  background: transparent;
  border: 0;
  font-size: 20px;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  z-index: 10;
}

.fg-catsidebar-close svg {
  display: block;
}

/* Logo */
.fg-catsidebar-logo img {
  max-width: 160px;
  margin-bottom: 12px;
}

/* Divider */
.fg-catsidebar-divider {
  border: none;
  border-top: 1px solid rgba(0,0,0,0.12);
  margin: 14px 0 16px;
}

/* Nav */
.fg-catsidebar-nav {
  position: relative;
}

.fg-catsidebar-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fg-catsidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fg-catsidebar-item {
  position: static;
  padding: 0 22px;
  margin-bottom: 4px;
}

.fg-catsidebar-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 6px;
  color: #1f2933;
  text-decoration: none;
  font-weight: 500;
  border-radius: 6px;
  transition: background .12s ease;
  position: relative;
}

.fg-catsidebar-link:hover {
  background: rgba(0,0,0,0.03);
}
.fg-catsidebar-logo{
  padding: 0 22px
}
/* Kategori ikon */
.fg-catsidebar-item-icon {
  display: inline-flex;
  width: 34px;
  height: 34px;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: 50%;
  font-size: 16px;
  flex-shrink: 0;
}

.fg-catsidebar-item-icon svg {
  stroke: #52606d;
  width: 20px;
  height: 20px;
}

.fg-catsidebar-link:hover .fg-catsidebar-item-icon svg {
  stroke: #1f2933;
}

.fg-catsidebar-item-text {
  flex: 1;
  font-size: 15px;
}

.fg-catsidebar-item-arrow {
  margin-left: auto;
  opacity: 0.5;
  transition: opacity 0.2s;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.fg-catsidebar-link:hover .fg-catsidebar-item-arrow {
  opacity: 1;
}

/* Submenu panel - FIXED positioning */
.fg-catsidebar-submenu {
  position: fixed;
  top: 0;
  left: 320px;
  height: 100vh;
  width: 300px;
  max-width: 85vw;
  background: #ffffff;
  box-shadow: 4px 0 24px rgba(0,0,0,0.15);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-20px); /* Hafif animasyon için */
  transition: opacity 0.2s ease, 
              visibility 0.2s ease,
              transform 0.2s ease;
  z-index: 99999999999;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* Hover olduğunda submenu göster */
.fg-catsidebar-item-parent:hover .fg-catsidebar-submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}

/* Submenu'nun kendisi de hover durumunu korur */
.fg-catsidebar-submenu:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}

/* Submenu header */
.fg-catsidebar-submenu-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 18px;
  background: #f6f7f8;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 10;
}

.fg-catsidebar-submenu-back {
  background: transparent;
  border: 0;
  padding: 4px;
  cursor: pointer;
  display: none;
  line-height: 1;
}

.fg-catsidebar-submenu-back svg {
  display: block;
}

.fg-catsidebar-submenu-title {
  font-weight: 600;
  font-size: 15px;
  color: #1f2933;
}

/* Submenu list */
.fg-catsidebar-submenu-list {
  list-style: none;
  padding: 12px;
  margin: 0;
}

.fg-catsidebar-submenu-list li {
  margin-bottom: 2px;
}

.fg-catsidebar-submenu-link {
  display: block;
  padding: 12px 14px;
  color: #3e4c59;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.15s ease;
  font-size: 14px;
}

.fg-catsidebar-submenu-link:hover {
  background: #f0f4f8;
  color: #1f2933;
  transform: translateX(2px);
}

.fg-catsidebar-submenu-all {
  font-weight: 600;
  color: #1f2933;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  margin-bottom: 8px;
  border-radius: 0;
}

.fg-catsidebar-submenu-all:hover {
  transform: none;
}

.fg-mobile-header-lang {
  display: inline-block;
}

.fg-mobile-header-lang-form {
  display: block;
}

.fg-mobile-header-lang-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  background: #f5f5f5;
  border-radius: 8px;
  padding: 8px 12px;
  min-width: 80px;
}

.fg-mobile-header-lang-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  outline: none;
  background: transparent;
  padding: 0;
  padding-right: 24px;
  font-size: 15px;
  font-weight: 600;
  color: #666666;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.fg-mobile-header-lang-select:focus {
  outline: none;
}

.fg-mobile-header-lang-select option {
  background: #ffffff;
  color: #202020;
  padding: 8px;
}

.fg-mobile-header-lang-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  stroke-width: 2.5;
  color: #666666;
  pointer-events: none;
}

/* Hover effect */
.fg-mobile-header-lang-wrapper:hover {
  background: #ebebeb;
}

/* Active/Focus effect */
.fg-mobile-header-lang-select:focus + .fg-mobile-header-lang-icon {
  transform: translateY(-50%) rotate(180deg);
  transition: transform 0.2s ease;
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .fg-mobile-header-lang-wrapper {
    padding: 6px 10px;
    min-width: 70px;
  }
  
  .fg-mobile-header-lang-select {
    font-size: 14px;
    padding-right: 20px;
  }
  
  .fg-mobile-header-lang-icon {
    right: 10px;
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 360px) {
  .fg-mobile-header-lang-wrapper {
    padding: 5px 8px;
    min-width: 65px;
  }
  
  .fg-mobile-header-lang-select {
    font-size: 13px;
  }
}

.fg-mobile-header-search {
  width: 100%;
}

.fg-mobile-header-search-form {
  width: 100%;
}

.fg-mobile-header-search-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.fg-mobile-header-search-input {
  flex:1;
  border: none;
  outline: none;
  padding: 6px 20px;
  font-size: 15px;
  color: #202020;
  background: transparent;
  font-weight: 400;
}

.fg-mobile-header-search-input::placeholder {
  color: #999999;
  font-weight: 400;
}

.fg-mobile-header-search-button {
  flex-shrink: 0;
  width: 70px;
  height: 40px;
  border: none;
  outline: none;
  background: #2c9baf;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.fg-mobile-header-search-button:hover {
  background: #258a9c;
}

.fg-mobile-header-search-button:active {
  background: #1f7685;
}

.fg-mobile-header-search-icon {
  width: 24px;
  height: 24px;
  stroke-width: 2.5;
  color: #ffffff;
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .fg-mobile-header-search {

  }
  
  .fg-mobile-header-search-input {
    padding: 4px 16px;
    font-size: 12px;
  }
  
  .fg-mobile-header-search-button {
    width: 40px;
    height: 40px;
  }
  
  .fg-mobile-header-search-icon {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 360px) {
  .fg-mobile-header-search-input {
    padding: 4px 14px;
    font-size: 13px;
  }
  
  .fg-mobile-header-search-button {
    width: 40px;
    height: 40px;
  }
  
  .fg-mobile-header-search-icon {
    width: 20px;
    height: 20px;
  }
}

/* Trigger button */
.fg-catsidebar-header-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 8px;
  background: white;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid rgba(0,0,0,0.1);
  transition: all 0.2s ease;
}

.fg-catsidebar-header-btn:hover {
  background: #f9f9f9;
  border-color: rgba(0,0,0,0.15);
}

/* Hamburger icon */
.fg-catsidebar-icon {
  width: 20px;
  height: 14px;
  position: relative;
  display: inline-block;
}

.fg-catsidebar-icon::before,
.fg-catsidebar-icon::after,
.fg-catsidebar-icon .line {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #1f2933;
  transition: all 0.2s ease;
}

.fg-catsidebar-icon::before {
  top: 0;
}

.fg-catsidebar-icon .line {
  top: 6px;
}

.fg-catsidebar-icon::after {
  bottom: 0;
}

/* Responsive - Mobil için */
@media (max-width: 768px) {
  .fg-catsidebar-panel {
    width: 280px;
  }
  
  .fg-catsidebar-submenu {
    left: 0;
    width: 280px;
    max-width: 92vw;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.2, 0.9, 0.2, 1), 
                opacity 0.3s ease, 
                visibility 0.3s ease;
  }
  
  .fg-catsidebar-submenu-back {
    display: block;
  }
  
  /* Mobilde hover yerine class ile kontrol */
  .fg-catsidebar-item-parent:hover .fg-catsidebar-submenu {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(100%);
  }
  
  .fg-catsidebar-item-parent.active .fg-catsidebar-submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }
  
  .fg-catsidebar-submenu:hover {
    /* Mobilde submenu hover'ı iptal et */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  
  .fg-catsidebar-item-parent.active .fg-catsidebar-submenu:hover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

/* Desktop için */
@media (min-width: 769px) {
  .fg-catsidebar-submenu {
    left: 320px;
  }
}

.fg-search-wrapper {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.fg-search-input-group {
    position: relative;
    margin-bottom: 1rem;
}

.fg-search-input-group .form-control {
    height: 52px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    padding-left: 3rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.fg-search-input-group .form-control:focus {
    border-color: #2563eb;
    /* box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1); */
    background-color: transparent;
    outline: none;
}

.fg-search-input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    font-size: 1.1rem;
    pointer-events: none;
}

.fg-search-select-group {
    margin-bottom: 1rem;
}

.fg-search-select-group .form-control {
    height: 52px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%2364748b' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
}

.fg-search-select-group .form-control:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
    outline: none;
}

.fg-search-checkbox {
    background: #f8fafc;
    border-radius: 8px;
    padding: 0.75rem 2rem;
    margin-top: 0.75rem;
    display: flex;
    align-items: center;
    transition: background 0.2s ease;
}

.fg-search-checkbox:hover {
    background: #f1f5f9;
}

.fg-search-checkbox .form-check-input {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.5rem;
    cursor: pointer;
    border: 2px solid #cbd5e1;
    transition: all 0.2s ease;
}

.fg-search-checkbox .form-check-input:checked {
    background-color: #2563eb;
    border-color: #2563eb;
}

.fg-search-checkbox .form-check-label {
    cursor: pointer;
    font-weight: 500;
    color: #475569;
    margin: 0;
    user-select: none;
}

.fg-search-btn {
    height: 52px;
    background: linear-gradient(135deg, #2563eb 0%, #00aacc 100%);
    border: none;
    border-radius: 10px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    width: 100%;
}

.fg-search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
    background: linear-gradient(135deg, #00aacc 0%, #2563eb 100%);
    color: #fff
}

.fg-search-btn:active {
    transform: translateY(0);
}

.fg-search-empty-state {
    text-align: center;
    padding: 3rem 2rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.fg-search-empty-icon {
    font-size: 4rem;
    color: #cbd5e1;
    margin-bottom: 1.5rem;
}

.fg-search-empty-title {
    color: #334155;
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.fg-search-empty-text {
    color: #64748b;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.fg-search-tips {
    background: #f8fafc;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: left;
    margin-top: 2rem;
    border: 1px solid #e2e8f0;
}

.fg-search-tips-title {
    color: #334155;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.fg-search-tips-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fg-search-tips-list li {
    color: #475569;
    padding: 0.5rem 0;
    display: flex;
    align-items: flex-start;
}

.fg-search-tips-list li i {
    color: #10b981;
    margin-right: 0.75rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .fg-search-wrapper {
        padding: 1.5rem;
    }
    
    .fg-search-btn {
        margin-top: 1rem;
    }
}

.fg-sub-cats-sidebar {
    padding-left: 12px;
    padding-bottom: 15px;
    position: relative;
    overflow-y: scroll;
}

/* FG Mobile  */

@media (max-width: 992px) {
  .fg-tabs {
    position: relative;
    overflow: hidden;
    gap: 24px;
  }
  .fg-homecat-title{
    font-size: 22px;
    font-weight: 500
  }
  .fg-title{
    font-size: 22px;
    font-weight: 500
  }
  .fg-hero-content p{
    font-size: 16px;
    font-weight: 500
  }
    .fg-tabs::-webkit-scrollbar {
    display: none;
  }
  .fgcat-dropdown-sort {
    padding: 0px 16px
  }
  .fg-four-box-item h4{
    font-size: 18px;
    font-weight: 500;
  }
  .fg-four-box-item p{
    font-size:13px
  }
  .fg-tab {
    flex-shrink: 0;
    min-width: calc(50% - 10px);
    text-align: center;
  }
  
  .fg-tabs::before,
  .fg-tabs::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 40px;
    pointer-events: none;
    z-index: 2;
  }
  
  .fg-tab-nav {
    position: absolute;
    top: 75px;
    /* transform: translateY(-50%); */
    background: white;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: all 0.2s;
  }
  
  .fg-tab-nav:hover {
    background: #f5f5f5;
  }
  
  .fg-tab-nav:active {
    transform: translateY(-50%) scale(0.95);
  }
  
  .fg-tab-nav-prev {
    left: 14px;
  }
  
  .fg-tab-nav-next {
    right: 14px;
  }
  
  .fg-tab-nav svg {
    width: 16px;
    height: 16px;
    fill: #202020;
  }
}

@media (max-width: 768px) {
  .fg-product-zigzag-part {padding-top: 40px!important}
  .fg-tabs {
    overflow-x: auto;
    overflow-y: hidden;
    justify-content: flex-start;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 20px;
    padding: 0 40px;
  }
  .fg-product-swiper-part h3{
    font-size: 18px;
    font-weight: 500;
  }
  .fg-product-swiper-part p{
    font-size: 12px;
    font-weight: 200;
  }
  .fg-product-counter-part .fg-product-counter-title {
  font-size: 24px;
  margin-bottom:0;
  display: block;
  text-align: center;
  }
  .fg-product-counter-part .fg-product-counter-text {
  font-size: 28px;
  display: block;
  text-align: center;
  margin-bottom: 40px;
  }
.fg-product-zigzag-part .fg-product-zigzag-title {
  font-size: 24px;
  margin-bottom:0;
  display: block;
  text-align: center;
}
.fg-product-zigzag-part .fg-product-zigzag-text {
  font-size: 28px;
  display: block;
  text-align: center;
  margin-bottom: 40px;
}
.fg-product-zigzag-part .fg-zigzag-text{
  font-size: 28px;
  align-items: center;
  height: auto;
}
.fg-zigzag-box{
 padding: 50px 20px
}
}

@media (max-width: 640px) {
  .fg-tabs {
    gap: 16px;
  }
  
  .fg-tab {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .fg-tabs {
    padding: 0 36px;
  }
  
  .fg-tab-nav {
    width: 28px;
    height: 28px;
  }
  
  .fg-tab-nav svg {
    width: 14px;
    height: 14px;
  }
}

.outofstock {
  /* filter: grayscale(1); */
  opacity: .4;
}
.outofstock a {
  /* cursor: not-allowed */
}

.disabled {
  cursor: not-allowed;
}


.fullresim {
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.fullresim *{
    font-family: 'Inter', sans-serif!important;
}
.alert.alert-success.alert-dismissible{display: block!important;position: relative!important;font-size:13px!important}
.alert button.close{width: 20px!important;height: 20px!important;line-height: 0px!important;position: absolute!important;right: 10px!important;top: 50%!important;transform: translateY(-50%)!important;}
.fullresim-content {
    position: relative;
    width: 100%;
    height: 100%;
}

.fullresim-content img {
    width: 100%;
    height: auto;
    display: block;
}

.fullresim-text {
    position: absolute;
    bottom: 100px;  /* Aşağıdan 200px yukarıda konumlandırma */
    left: 50%;
    transform: translateX(-50%);  /* Sadece yatay ortalama */
    text-align: center;
    color: white;
    z-index: 2;
    width: 90%;
    max-width: 800px;
    padding: 20px;
}

.fullresim-text h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.fullresim-text p {
    font-size: 21px!important;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    margin: 0;
}


 .fullresim-text-mobile h5 {
        font-size: 2.0rem!important;
        margin-bottom: 0px!important;
        padding-bottom: 0px!important;
    }

.fullresim-text-mobile h3 {
    font-size: 2.0rem!important;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.fullresim-text-mobile p {
    font-size: 18px!important;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    margin: 0;
}


/* Responsive ayarlar */
@media (max-width: 768px) {
    .fullresim {
        min-height: 1px;
    }
    
    .fullresim-text h5 {
        font-size: .7rem!important;
        margin-bottom: 0px!important;
        padding-bottom: 0px!important;
    }
    .fullresim-text h3 {
        font-size: 1.4rem!important;
        color: #fff!important
    }
    
    .fullresim-text p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .fullresim-text {
        bottom: 0;
        padding: 10px;
    }
    
    .fullresim-text h3 {
        font-size: 1.4rem;
    }
    
    .fullresim-text p {
        font-size: 0.9rem;
    }
}



 .dt-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        .dt-section * {
            color: white;
        }

        .dt-section {
            min-height: 50vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem 0;
            position: relative;
        }

        .dt-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.7);
            z-index: 1;
        }

        .dt-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 3rem;
            color: white;
        }

        /* Feature Showcase with Thumbs */
        .dt-thumbs-slider {
            margin-bottom: 2rem;
        }

        .dt-thumbs-slider .swiper-slide {
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 1;
            transition: opacity 0.3s;
        }

        .dt-thumbs-slider .swiper-slide-thumb-active .dt-thumb {
            background: white;
        }

        .dt-thumbs-slider .swiper-slide-thumb-active .dt-thumb-title {
            color: black;
        }

        .dt-thumb {
            background: #000;
            border-radius: 10px;
            padding: 1rem;
            text-align: center;
            width: 100%;
        }

        .dt-thumb-icon {
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }

        .dt-thumb-title {
            font-size: 0.9rem;
            font-weight: 600;
            color: white;
        }

        .dt-main-slider .swiper-slide {
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .dt-feature-content {
            text-align: center;
            max-width: 500px;
        }

        .dt-feature-icon {
            font-size: 4rem;
            margin-bottom: 1rem;
        }

        .dt-feature-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .dt-feature-desc {
            font-size: 1.1rem;
            opacity: 0.8;
        }


.product-bottom-fixed {
    position: fixed;
    left: 0;
    bottom: -100px;
    z-index: 9999;
    width: 100%;
    height: 96px;
    padding-block: 6px;
    background-color: #fff;
    box-shadow: 0 -4px 4px 0 rgba(0, 0, 0, 0.1);
    transition: .3s linear;
}

body.scrolled-past-bottom-fixed {
    padding-bottom: 96px;
}

body.scrolled-past-bottom-fixed .product-bottom-fixed {
    bottom: 0;
}

.product-bottom-fixed .container {
    width: 1200px;
    padding-inline: 20px;
    margin-inline: auto;
}

.product-bottom-fixed-inside {
    display: grid;
    align-items: center;
    grid-template-columns: 84px 1fr 200px;
    column-gap: 24px;
}

.product-bottom-fixed-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
}

.product-bottom-fixed-image img {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    max-width: 100%;
    max-height: 100%;
    display: inline-block;
    margin: auto;
}

.product-bottom-fixed-button .product-form,
.product-bottom-fixed-button .add_to_cart_holder {
    margin-bottom: 0;
}

.product-bottom-fixed-title h1 {
    line-height: 26px;
    color: #333;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0;
}
.product-bottom-fixed-price .price{font-size: 18px;font-weight: 400}
@media only screen and (max-width: 1199px) {
    .product-bottom-fixed .container {
        width: 100%;
    }
}

@media only screen and (max-width: 991px) {
  .product-bottom-fixed-button .product-form {text-align:right;}
    
}

@media only screen and (max-width: 767px) {
    .product-gallery-container scroll-shadow {
        display: none;
    }
    .product-images .flickity-button {
        display: none;
    }
    .product-gallery-sticky {
        margin-bottom: 48px;
        margin-left: -10px;
        margin-right: -10px;
    }
    .product-images {
        border-radius: 0;
        border-left: none;
        border-right: none;
        .flickity-page-dots {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0;
            position: absolute;
            left: 0;
            bottom: 12px;
            width: 100%;
        }
        .flickity-page-dots .dot {
            width: 10px;
            height: 10px;
            display: inline-block;
            border: none;
            opacity: 1;
            border-radius: 50%;
            margin: 0 4px;
            cursor: pointer;
            background-color: #D9D9D9;
        }
        .flickity-page-dots .dot.is-selected {
            background-color: #000;
        }
    }
    .product-bottom-fixed {
        bottom: -70px;
        height: 60px;
    }
    .product-bottom-fixed-inside {
        grid-template-columns: auto minmax(0,1fr);
    }
    .product-bottom-fixed .container {
        padding-inline: 10px;
    }
    .product-bottom-fixed-image,
    .product-bottom-fixed-title {
        display: none;
    }
}

.no-stock-but-add-to-cart-text {
  color: #00aacc;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

video::-webkit-media-controls {
  display: none !important;
}

video::-webkit-media-controls-overlay-play-button {
  display: none !important;
}

/* Player'ın üstüne eklenen custom 10sn butonlarını da gizle */
.player-overlay, .forward-button, .rewind-button {
  display: none !important;
}
.fg-product-model {
    color: #949494;
    font-size: 12px;
    line-height: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}
@media(max-width: 992px) {
  .fg-hero-content{padding-bottom: 20px}
  .fg-product-counter-part .fg-product-counter-number .counter {
    font-size: 44px
  }
  .fg-product-counter-part .fg-product-counter-number{
    padding: 20px 
  }
  .fg-product-counter-part .fg-product-counter-number {
    justify-content: center;
  }
  .fg-product-counter-part .fg-product-counter-number .d-flex{
    justify-content: center;
  }
  .fg-product-counter-part .fg-product-counter-number .counter-text{text-align: center;}
  .fg-vertical-zigzag .row {
    padding-top: 0px
  }
  .row.g-0.fg-ri-tl {flex-direction: column-reverse;}
  .fg-li-tr .fg-vertical-zigzag-box, .fg-ri-tl .fg-vertical-zigzag-box {padding: 20px 20px 60px 20px}
  .fg-vertical-zigzag-title{font-size: 22px}
  .fg-vertical-zigzag-text {font-size: 15px}
  #fg-product-detail {padding:0!important}
  .fullresim {padding: 0!important}  
  .fg-product-detail-tab-technical-item{width:100%}
  .fg-product-detail-tab-technical-item-title{font-size:16px}
  .fg-product-detail-tab-technical-item-text{font-size:14px}
  .fg-product-info-main .fg-features{display: none;}
  .fg-product-info-main .fg-payment-methods{justify-content: center;}
  .dt-thumb{width: 40%}
  .dt-feature-desc{font-size: 14px}
}
.fullresim-content > div:not(.fullresim-text) {display:none}
.fullresim-content{position:relative}
@media (max-width: 768px) {
  .fullresim-content:before{content: '';position:absolute;width:100%;height:100%;top:0;left:0;background-color: rgba(0,0,0,0.5)}
            .fullresim-text {
                position: static !important;
                transform: none !important;
                margin: -132px auto 0 !important;
                left: auto !important;
                top: auto !important;
                max-width: 90% !important;
                text-align: center !important;
            }
            
            .fullresim-content {
                display: flex;
                flex-direction: column;
                align-items: center;
            }
        }

 .dt-s2-minimal {
            background-color: var(--dt-white);
            color: var(--dt-black);
            padding: 150px 0;
            text-align: center;
        }

       
        .dt-s3-asymmetric { padding: 120px 0; }
        .dt-tech-highlight { color: #00f2ea; font-size: 1.2rem; text-transform: uppercase; letter-spacing: 2px; }
        .dt-floating-img { animation: float 6s ease-in-out infinite; }
        .fg-bn-3-desc{width: 82%}
        @media(max-width: 992px) {
          .fg-bn-3-desc{width: 100%}  
        }
        @keyframes float { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-20px); } }
        #fg-discover-swiper {
  overflow: hidden;
}
.fg-desktop-header-search-wrapper {
  position: relative;
}
.fg-desktop-header-search-wrapper i {
position: absolute;
top: 13.5px;
left: 13.5px;
transition: all .25s cubic-bezier(.104, .204, .492, 1);
}
.fg-desktop-header-search-input {
  padding-right: 10px;
  padding: 0 0 0 50px;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    color: #333;
    background-color: #f8f8f8;
    height: 44px;
    border-radius: 6px;
    border: 1px solid #c0c0c0;
    width: 400px;
}
.fg-desktop-header-search-input::placeholder {
  color: #333;
}

  .video-section__container {
            position: relative;
            width: 100%;
            max-width: 1366px;
            margin: 0 auto;
        }
        
        .video-aspect--16-9 {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 aspect ratio */
            height: 100%;
            overflow: hidden;
        }
        
        .video-aspect--16-9 video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }


        #fg-heroSlider {
    display: none;
  }
  
  @media (min-width: 768px) {
    #fg-heroSlider {
      display: block;
    }
  }
  
  /* fg-heroSlider2: Sadece mobilde görünür */
  #fg-heroSlider2 {
    display: block;
  }
  
  @media (min-width: 768px) {
    #fg-heroSlider2 {
      display: none;
    }
  }

  


.search-autocomplete {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-top: none;
  max-height: 400px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.search-autocomplete.active {
  display: block;
}

.search-autocomplete-item {
  padding: 10px;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.2s;
}

.search-autocomplete-item:hover {
  background-color: #f5f5f5;
}

.search-autocomplete-item:last-child {
  border-bottom: none;
}

.search-autocomplete-image {
  width: 50px;
  height: 50px;
  object-fit: cover;
  margin-right: 10px;
  border-radius: 4px;
}

.search-autocomplete-details {
  flex: 1;
}

.search-autocomplete-name {
  font-weight: 500;
  color: #333;
  margin-bottom: 4px;
}

.search-autocomplete-price {
  color: #666;
  font-size: 14px;
}

.search-autocomplete-empty {
  padding: 15px;
  text-align: center;
  color: #999;
}

.search-autocomplete-section-title {
  padding: 8px 10px;
  background-color: #f8f8f8;
  font-weight: 600;
  color: #555;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid #e0e0e0;
}

.search-autocomplete-category-item {
  padding: 10px 15px;
  border-bottom: 1px solid #f0f0f0;
  display: block;
  cursor: pointer;
  transition: background-color 0.2s;
  text-decoration: none;
  color: inherit;
}

.search-autocomplete-category-item:hover {
  background-color: #f5f5f5;
}

.search-autocomplete-category-icon {
  display: none;
}

.search-autocomplete-category-name {
  font-weight: 500;
  color: #333;
  font-size: 14px;
}

.fg-mobile-header-search-wrapper {
  position: relative;
}


.header-search-autocomplete {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-top: none;
  max-height: 500px;
  overflow-y: auto;
  z-index: 9999;
  display: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  border-radius: 0 0 8px 8px;
  margin-top: 2px;
}

.header-search-autocomplete.active {
  display: block;
}

.header-search-autocomplete-item {
  padding: 12px 15px;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.2s;
  text-decoration: none;
  color: inherit;
}

.header-search-autocomplete-item:hover {
  background-color: #f8f9fa;
}

.header-search-autocomplete-item:last-child {
  border-bottom: none;
}

.header-search-autocomplete-image {
  width: 50px;
  height: 50px;
  object-fit: cover;
  margin-right: 12px;
  border-radius: 6px;
  border: 1px solid #eee;
}

.header-search-autocomplete-details {
  flex: 1;
}

.header-search-autocomplete-name {
  font-weight: 500;
  color: #333;
  margin-bottom: 4px;
  font-size: 14px;
}

.header-search-autocomplete-price {
  color: #5C0F1A;
  font-size: 14px;
  font-weight: 600;
}

.header-search-autocomplete-empty {
  padding: 20px;
  text-align: center;
  color: #999;
  font-size: 14px;
}

.header-search-autocomplete-section-title {
  padding: 10px 15px;
  background-color: #f8f9fa;
  font-weight: 600;
  color: #555;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid #e0e0e0;
}

.header-search-autocomplete-category-item {
  padding: 10px 15px;
  border-bottom: 1px solid #f0f0f0;
  display: block;
  cursor: pointer;
  transition: background-color 0.2s;
  text-decoration: none;
  color: inherit;
}

.header-search-autocomplete-category-item:hover {
  background-color: #f8f9fa;
}

.header-search-autocomplete-category-icon {
  display: none;
}

.header-search-autocomplete-category-name {
  font-weight: 500;
  color: #333;
  font-size: 14px;
}

.fg-desktop-header-search-wrapper {
  position: relative;
}


.cart-link {
	position: relative;
	display: inline-block;
}

.cart-count {
	position: absolute;
	top: 5px;
	right: 0px;
	min-width: 18px;
	height: 18px;
	padding: 0 4px;

	background-color: #00aacc;
	color: #ffffff;

	border-radius: 50%;
	font-size: 11px;
	font-weight: 600;
	line-height: 18px;
	text-align: center;

	box-sizing: border-box;
}
@media(max-width:992px){
.cart-count {top:-5px;right:-5px}
}
@media(max-width:992px) {
    #fg-heroSlider2 .fg-slide-content {transform:unset;top: unset;bottom: 30px;padding:  0 90px 0 20px !important}
    #fg-heroSlider2  .fg-slider-controller {display: none !important}
}

.cart-modal {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 99998;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
    }

    .cart-modal.show {
      opacity: 1;
      visibility: visible;
    }

    .cart-modal-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      backdrop-filter: blur(4px);
    }

    .cart-modal-content {
      position: relative;
      background: #fff;
      border-radius: 20px;
      max-width: 500px;
      width: 90%;
      max-height: 90vh;
      overflow-y: auto;
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
      transform: scale(0.9);
      transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

    .cart-modal.show .cart-modal-content {
      transform: scale(1);
    }

    .cart-modal-close {
      position: absolute;
      top: 15px;
      right: 15px;
      background: #f3f4f6;
      border: none;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      font-size: 24px;
      color: #6b7280;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s;
      z-index: 1;
    }

    .cart-modal-close:hover {
      background: #e5e7eb;
      color: #1f2937;
      transform: rotate(90deg);
    }

    .cart-modal-header {
      padding: 40px 30px 20px;
      text-align: center;
      border-bottom: 1px solid #f3f4f6;
    }

    .success-icon-wrapper {
      margin-bottom: 20px;
    }

    .checkmark {
      width: 80px;
      height: 80px;
      margin: 0 auto;
      display: block;
    }

    .checkmark-circle {
      stroke-dasharray: 166;
      stroke-dashoffset: 166;
      stroke-width: 2;
      stroke: #00aacc;
      fill: none;
      animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
    }

    .cart-modal.show .checkmark.animate .checkmark-circle {
      animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
    }

    .checkmark-check {
      transform-origin: 50% 50%;
      stroke-dasharray: 48;
      stroke-dashoffset: 48;
      stroke: #00aacc;
      stroke-width: 3;
      animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.6s forwards;
    }

    .cart-modal.show .checkmark.animate .checkmark-check {
      animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.6s forwards;
    }

    @keyframes stroke {
      100% {
        stroke-dashoffset: 0;
      }
    }

    @keyframes scaleIn {
      0% {
        transform: scale(0);
      }
      50% {
        transform: scale(1.2);
      }
      100% {
        transform: scale(1);
      }
    }

    .cart-modal-header h3 {
      margin: 0;
      font-size: 24px;
      font-weight: 700;
      color: #1f2937;
    }

    .cart-modal-body {
      padding: 25px 30px;
    }

    .added-product-info {
      display: flex;
      gap: 20px;
      padding: 20px;
      background: #f9fafb;
      border-radius: 12px;
      margin-bottom: 20px;
    }

    .added-product-info img {
      width: 100px;
      height: 100px;
      object-fit: cover;
      border-radius: 8px;
      flex-shrink: 0;
    }

    .product-details {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .product-details h4 {
      margin: 0;
      font-size: 16px;
      font-weight: 600;
      color: #1f2937;
      line-height: 1.4;
    }

    .product-quantity,
    .product-price {
      margin: 0;
      font-size: 14px;
      color: #6b7280;
    }

    .product-price {
      font-size: 18px;
      font-weight: 700;
      color: #00aacc;
    }

    .cart-summary {
      border-top: 2px dashed #e5e7eb;
      padding-top: 20px;
    }

    .summary-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 16px;
    }

    .summary-row strong {
      font-size: 20px;
      color: #00aacc;
    }

    .cart-modal-footer {
      padding: 20px 30px 30px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .cart-modal-footer button,
    .cart-modal-footer a {
      padding: 14px 24px;
      border-radius: 10px;
      font-size: 15px;
      font-weight: 600;
      text-align: center;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: all 0.2s;
      display: block;
    }

    .btn-checkout {
      background: linear-gradient(135deg, #00aacc 0%, #014d5c 100%);
      color: #fff;
      box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    }

    .btn-checkout:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4);
      color: #fff;
    }

    .btn-go-cart {
      background: #fff;
      color: #1f2937;
      border: 2px solid #e5e7eb;
    }

    .btn-go-cart:hover {
      background: #f9fafb;
      border-color: #d1d5db;
      color: #1f2937;
    }

    .btn-continue-shopping {
      background: transparent;
      color: #6b7280;
      border: none;
      font-size: 14px;
      padding: 8px;
    }

    .btn-continue-shopping:hover {
      color: #1f2937;
      text-decoration: underline;
    }

    /* Responsive Design */
    @media (max-width: 640px) {
      .modern-toast {
        min-width: 280px;
        max-width: calc(100vw - 40px);
        padding: 14px 16px;
      }

      .cart-modal-content {
        width: 95%;
        border-radius: 16px;
      }

      .cart-modal-header,
      .cart-modal-body,
      .cart-modal-footer {
        padding-left: 20px;
        padding-right: 20px;
      }

      .added-product-info {
        flex-direction: column;
        text-align: center;
      }

      .added-product-info img {
        width: 80px;
        height: 80px;
        margin: 0 auto;
      }

      .checkmark {
        width: 60px;
        height: 60px;
      }

      .cart-modal-header h3 {
        font-size: 20px;
      }
    }

    /* ============================================
       VIDEO MODAL & TRIGGER BUTTON
       ============================================ */

    /* Video Butonu - Sol üst köşe */
    .video-trigger-btn {
      position: absolute;
      top: 20px;
      left: 20px;
      z-index: 10;
      width: auto;
      min-width: 50px;
      height: 50px;
      padding: 0 20px;
      background: rgba(0, 0, 0, 0.7);
      border: 2px solid rgba(255, 255, 255, 0.9);
      border-radius: 25px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      cursor: pointer;
      transition: all 0.3s ease;
      backdrop-filter: blur(10px);
    }

    .video-trigger-btn span {
      color: #fff;
      font-size: 14px;
      font-weight: 600;
      white-space: nowrap;
    }

    .video-trigger-btn:hover {
      background: rgba(0, 0, 0, 0.9);
      transform: scale(1.1);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .video-trigger-btn svg {
      width: 24px;
      height: 24px;
      color: #fff;
      margin-left: 2px; /* Play ikonunu ortala */
    }

    /* Video Modal Content */
    .video-modal-content {
      max-width: 1200px;
      width: 90%;
      background: #000;
      border-radius: 12px;
      overflow: hidden;
    }

    .video-modal-content .cart-modal-body {
      padding: 0;
    }

    .video-wrapper {
      position: relative;
      padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
      height: 0;
      overflow: hidden;
    }

    .video-wrapper iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }

    /* Video Modal Close Button - Beyaz yap */
    #video-modal .cart-modal-close {
      color: #fff;
      background: rgba(0, 0, 0, 0.5);
      border-radius: 50%;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    #video-modal .cart-modal-close:hover {
      background: rgba(255, 255, 255, 0.2);
      color: #fff;
    }

    /* Mobil uyum */
    @media (max-width: 768px) {
      .video-trigger-btn {
        width: 50px;
        height: 50px;
        min-width: 40px;
        padding: 0;
        top: 15px;
        left: 15px;
        border-radius: 50%;
      }

      .video-trigger-btn span {
        display: none;
      }

      .video-trigger-btn svg {
        width: 20px;
        height: 20px;
        margin-left: 2px;
      }

      .video-modal-content {
        width: 95%;
        border-radius: 8px;
      }
    }


    @media (max-width: 768px) {
  /* Okları gizle */
  .fg-tab-nav { display: none !important; }

  /* Menü kapsayıcısını kaydırılabilir yap */
  .fg-tabs {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* iOS için akıcı kaydırma */
    scrollbar-width: none;
    padding: 10px 0;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory; 
  }
  
  .fg-tabs::-webkit-scrollbar { display: none; }

  /* Her bir başlığı %50 genişlik yap (Ekrana 2 tane sığsın) */
  .fg-tab {
    flex: 0 0 50%; /* BURASI DEĞİŞTİ: 100 yerine 50 */
    box-sizing: border-box; /* Padding eklersek taşmasın diye */
    text-align: center;
    justify-content: center;
    scroll-snap-align: start; /* Kaydırınca sol başa hizalansın */
    padding: 0 5px; /* Aralarında hafif boşluk hissi olsun */
  }

  /* Hero row ve görselleri responsive yap */
  .fg-hero-row {
    flex-direction: column;
  }

  .fg-hero-img {
    width: 100%;
    max-width: 100%;
  }

  .fg-hero-img img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
  }

  .fg-hero-content {
    width: 100%;
    max-width: 100%;
  }
}

.installment-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

@media (min-width: 768px) {
  .installment-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .installment-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.installment-grid > div {
  margin-bottom: 0 !important;
}

/* Price and Installment Wrapper */
.fg-price-installment-wrapper {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.fg-price-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    margin-bottom: 15px;
}

.fg-price-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    flex-shrink: 0;
}

.fg-price-content {
    flex: 1;
}

.fg-price-label {
    font-size: 13px;
    color: #6c757d;
    margin-bottom: 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fg-price-main {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.fg-price-amount {
    font-size: 32px;
    font-weight: 800;
    color: #5C0F1A;
    line-height: 1;
}

.fg-price-amount.special {
    color: #f5576c;
}

.fg-price-discount-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.fg-price-old-amount {
    font-size: 18px;
    color: #6c757d;
    text-decoration: line-through;
    font-weight: 500;
}

.fg-price-badge {
    display: inline-block;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.fg-installment-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.fg-installment-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    flex-shrink: 0;
}

.fg-installment-content {
    flex: 1;
}

.fg-installment-title {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 4px;
    font-weight: 500;
}

.fg-installment-detail {
    font-size: 18px;
    font-weight: 700;
    color: #212529;
}

.fg-installment-count {
    color: #667eea;
}

.fg-installment-btn {
    width: 100%;
    background: #212529;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(33, 37, 41, 0.15);
}

.fg-installment-btn:hover {
    background: #000;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(33, 37, 41, 0.25);
}

.fg-installment-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(33, 37, 41, 0.2);
}

.fg-installment-btn-inline {
    width: auto;
    background: #212529;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(33, 37, 41, 0.15);
    white-space: nowrap;
    margin-left: auto;
}

.fg-installment-btn-inline:hover {
    background: #000;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(33, 37, 41, 0.25);
}

.fg-installment-btn-inline:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(33, 37, 41, 0.2);
}

.fg-installment-btn-inline i:first-child {
    font-size: 14px;
}

.fg-installment-btn-inline i:last-child {
    font-size: 12px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .fg-price-installment-wrapper {
        padding: 15px;
    }

    .fg-price-card {
        padding: 15px;
        gap: 12px;
    }

    .fg-price-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .fg-price-label {
        font-size: 12px;
    }

    .fg-price-amount {
        font-size: 26px;
    }

    .fg-price-old-amount {
        font-size: 16px;
    }

    .fg-price-badge {
        font-size: 10px;
        padding: 3px 8px;
    }

    .fg-installment-card {
        padding: 12px;
        gap: 12px;
    }

    .fg-installment-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .fg-installment-title {
        font-size: 13px;
    }

    .fg-installment-detail {
        font-size: 16px;
    }

    .fg-installment-btn {
        padding: 12px 16px;
        font-size: 12px;
    }

    .fg-installment-btn-inline {
        padding: 8px 12px;
        font-size: 12px;
    }

    .fg-installment-btn-inline span {
        display: none;
    }

    .fg-installment-btn-inline i:first-child {
        font-size: 16px;
    }
}    

 /* --- SECTION 10: SLOGAN SECTION (Merkezi Slogan) --- */
        .dt-s10-slogan {
            padding: 90px 0;
            text-align: center;
        }
        .dt-slogan-title {
            font-size: 30px;
            font-weight: 700;
            letter-spacing: -0.03em;
            line-height: 1.1;
        }

         @media (max-width: 768px) {
            .dt-slogan-title {
                font-size: 18px;
                font-weight: 400;
            }
        }


@media screen and (width: 1366px) {
    #textContainer1366 {
        top: 35% !important;
    }
}
 
.kucukyazi {
    font-size: 14px!important;
}


 .cc-section {
            padding: 0;
            position: relative;
            min-height: 100vh;
        }

        .cc-section:nth-child(even) {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .cc-image-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 0;
            box-shadow: none;
            height: 100vh;
        }

        .cc-image-wrapper img {
            width: 100%;
            height: 100vh;
            object-fit: cover;
        }



        .cc-content {
            padding: 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
            height: 100%;
        }

        .cc-subtitle {
            color: var(--cc-secondary);
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .cc-subtitle::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--cc-accent);
        }

        .cc-title {
            font-size: 42px;
            font-weight: 700;
            color: var(--cc-primary);
            margin-bottom: 25px;
            line-height: 1.2;
        }

        .cc-description {
            font-size: 16px;
            line-height: 1.8;
            color: #666;
            margin-bottom: 30px;
        }

        .cc-features {
            list-style: none;
            padding: 0;
            margin-bottom: 30px;
        }

        .cc-features li {
            padding: 12px 0;
            border-bottom: 1px solid #e0e0e0;
            font-size: 15px;
            display: flex;
            align-items: center;
        }

        .cc-features li:last-child {
            border-bottom: none;
        }

        .cc-features li i {
            color: var(--cc-secondary);
            margin-right: 15px;
            font-size: 18px;
            width: 25px;
        }

        .cc-btn {
            display: inline-block;
            padding: 15px 40px;
            background: linear-gradient(135deg, var(--cc-secondary) 0%, #2980b9 100%);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
        }

        .cc-badge {
            position: absolute;
            top: 40px;
            right: 40px;
            background: var(--cc-accent);
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 14px;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
        }

        .cc-image-col {
            padding: 0 !important;
        }

        .cc-content-col {
            padding: 60px 80px;
            display: flex;
            align-items: center;
        }

        .cc-row-full {
            min-height: 100vh;
        }

        .cc-decorative-line {
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, var(--cc-secondary), var(--cc-accent));
            margin: 20px 0;
            border-radius: 2px;
        }

        /* 3 Kolonlu Resim Overlay Bölümü */
        .cc-triple-section {
            padding: 0;
            background: #fff;
        }

        .cc-triple-col {
            padding: 0 !important;
            position: relative;
            overflow: hidden;
        }

        .cc-triple-image-wrapper {
            position: relative;
            width: 100%;
            height: 70vh;
            overflow: hidden;
        }

        .cc-triple-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.6s ease;
        }

        .cc-triple-image-wrapper:hover img {
            transform: scale(1.1);
        }

        .cc-triple-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgb(0 0 0 / 85%) 0%, rgb(0 0 0 / 70%) 70%, transparent 100%);
            padding: 40px 30px;
            color: white;
        }

        .cc-triple-title {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 15px;
            color: white;
            line-height: 1.3;
        }

        .cc-triple-description {
            font-size: 15px;
            line-height: 1.6;
            color: rgba(255,255,255,0.9);
            margin: 0;
        }

        /* 4 Kolonlu Bölüm */
        .cc-quad-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        }

        .cc-quad-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 60px;
            padding: 0 20px;
        }

        .cc-quad-main-title {
            font-size: 48px;
            font-weight: 800;
            color: var(--cc-primary);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .cc-quad-main-desc {
            font-size: 18px;
            color: #666;
            line-height: 1.8;
            margin: 0;
        }

        .cc-quad-col {
            padding: 20px;
            margin-bottom: 30px;
        }

        .cc-quad-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .cc-quad-image {
            width: 100%;
            height: 280px;
            object-fit: cover;
            display: block;
        }

        .cc-quad-content {
            padding: 30px 25px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .cc-quad-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--cc-secondary), var(--cc-accent));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .cc-quad-icon i {
            font-size: 28px;
            color: white;
        }

        .cc-quad-card-title {
            font-size: 22px;
            font-weight: 700;
            color: var(--cc-primary);
            margin-bottom: 12px;
            line-height: 1.3;
        }

        .cc-quad-card-desc {
            font-size: 15px;
            color: #666;
            line-height: 1.7;
            margin: 0;
            flex: 1;
        }


         @media (max-width: 768px) {
            .cc-section {
                padding: 0;
                min-height: auto;
            }

            .cc-title {
                font-size: 32px;
            }

            .cc-content-col {
                padding: 40px 30px !important;
            }

            .cc-image-wrapper {
                height: 50vh;
            }

            .cc-image-wrapper img {
                height: 50vh;
            }

            .cc-triple-image-wrapper {
                height: 50vh;
            }

            .cc-triple-title {
                font-size: 22px;
            }

            .cc-triple-description {
                font-size: 14px;
            }

            .cc-quad-main-title {
                font-size: 32px;
            }

            .cc-quad-main-desc {
                font-size: 16px;
            }

            .cc-quad-col {
                padding: 10px;
            }

            .cc-quad-image {
                height: 220px;
            }
        }

        