/* Pandacado demo polish layer */
:root {
  --pc-blue: #2563eb;
  --pc-ink: #111827;
  --pc-muted: #64748b;
  --pc-line: #e5e7eb;
  --pc-soft: #f8fafc;
  --pc-amber: #f59e0b;
  --pc-green: #16a34a;
}

body {
  background: #f8fafc;
  color: var(--pc-ink);
  letter-spacing: 0;
}

.page-wrapper {
  background: #fff;
  opacity: 1 !important;
  visibility: visible !important;
}

body:not(.loaded) .page-wrapper {
  opacity: 1 !important;
  visibility: visible !important;
}

.header-top {
  background: #0f172a;
  color: rgba(255, 255, 255, .78);
}

.header-top a,
.header-top .welcome-msg {
  color: rgba(255, 255, 255, .84) !important;
}

.header-middle {
  border-bottom: 1px solid var(--pc-line);
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(16px);
}

.header .logo img,
.logo-footer img {
  object-fit: contain;
}

.pc-menu-emoji {
  display: inline-grid;
  place-items: center;
  width: 1.9rem;
  height: 1.9rem;
  margin-right: .35rem;
  border-radius: 8px;
  background: #f1f5f9;
  font-size: 1.25rem;
  line-height: 1;
  vertical-align: middle;
}

.intro-section,
.intro-section .swiper-container,
.intro-section .swiper-wrapper,
.intro-section .swiper-slide {
  min-height: 520px;
}

.intro-section .banner {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  background-size: cover !important;
  background-position: center !important;
}

.intro-section .banner:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(248, 250, 252, .97), rgba(248, 250, 252, .78) 42%, rgba(255, 255, 255, .08));
  z-index: 0;
}

.intro-section .container,
.intro-section .banner-content,
.intro-section .slide-image {
  position: relative;
  z-index: 1;
}

.intro-section .banner-content {
  padding: 42px 0;
}

.intro-section .banner-subtitle {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(37, 99, 235, .1);
  color: var(--pc-blue) !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
}

.intro-section .banner-title {
  max-width: 560px;
  color: var(--pc-ink) !important;
  font-size: 54px !important;
  line-height: 1.04 !important;
  letter-spacing: 0 !important;
  text-shadow: 0 1px 0 rgba(255,255,255,.3);
}

.intro-section .font-weight-normal,
.intro-section p {
  color: var(--pc-muted) !important;
}

.intro-section img.slide-image {
  max-width: 430px;
  width: 42vw;
  height: auto;
  border-radius: 8px;
  filter: drop-shadow(0 28px 45px rgba(15, 23, 42, .18));
}

.icon-box-wrapper {
  border: 1px solid var(--pc-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(15, 23, 42, .06);
}

.icon-box {
  padding: 22px 20px;
}

.icon-box-title {
  color: var(--pc-ink);
}

.category-ellipse-section {
  padding: 18px 0 6px;
  background: #fff;
}

.category-ellipse-section .swiper-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px 18px;
}

.category-ellipse-section .category {
  min-width: 132px !important;
  max-width: 132px !important;
  margin-right: 16px !important;
  padding: 14px 12px;
  border: 1px solid var(--pc-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, .06);
  transition: transform .2s ease, box-shadow .2s ease;
}

.category-ellipse-section .category:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, .1);
}

.category-ellipse-section .category-media img {
  width: 74px !important;
  height: 74px !important;
  border-radius: 8px !important;
  object-fit: cover;
  background: #f8fafc !important;
}

.category-name {
  margin-top: 10px;
  color: var(--pc-ink);
  font-size: 13px;
  font-weight: 800;
}

.title-link-wrapper .title {
  color: var(--pc-ink);
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 0;
}

.product-wrapper,
.product-wrapper-1 {
  position: relative;
}

.product-wrap {
  padding: 8px;
}

.product {
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--pc-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, .06);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.product:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, .22);
  box-shadow: 0 22px 46px rgba(15, 23, 42, .12);
}

.product-media {
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  margin: 0;
  background: linear-gradient(180deg, #f8fafc, #eef4ff);
}

.product-media img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform .3s ease;
}

.product:hover .product-media img {
  transform: scale(1.03);
}

.product-details {
  min-height: 126px;
  padding: 16px 16px 18px;
}

.product-name {
  min-height: 40px;
  margin-bottom: 8px;
  font-size: 15px !important;
  line-height: 1.35 !important;
  font-weight: 800 !important;
}

.product-name a {
  color: var(--pc-ink) !important;
}

.product-price {
  color: var(--pc-blue) !important;
  font-size: 18px !important;
  font-weight: 900 !important;
}

.old-price {
  color: #94a3b8 !important;
}

.banner.h-100,
.category-banner-wrapper .banner {
  border-radius: 8px !important;
  overflow: hidden;
  box-shadow: 0 16px 38px rgba(15, 23, 42, .08);
  background-size: cover !important;
  background-position: center !important;
}

.category-banner-wrapper img {
  width: 100%;
  height: 190px !important;
  object-fit: cover;
}

.footer {
  background: #0f172a;
  color: rgba(255, 255, 255, .72);
}

.footer a,
.footer .widget-title,
.footer .copyright {
  color: rgba(255, 255, 255, .9) !important;
}

.footer-newsletter {
  background: linear-gradient(135deg, #2563eb, #0f172a) !important;
}

.payment img[src*="hizliresim"] {
  display: none;
}

@media (max-width: 991px) {
  .intro-section,
  .intro-section .swiper-container,
  .intro-section .swiper-wrapper,
  .intro-section .swiper-slide {
    min-height: 480px;
  }

  .intro-section .banner-title {
    font-size: 38px !important;
  }

  .intro-section img.slide-image {
    display: none;
  }
}

@media (max-width: 575px) {
  .intro-section .banner-content {
    padding: 36px 0;
  }

  .intro-section .banner-title {
    font-size: 32px !important;
  }

  .category-ellipse-section .category {
    min-width: 112px !important;
    max-width: 112px !important;
  }
}

/* Premium demo polish */
body,
button,
input,
select,
textarea {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif !important;
  letter-spacing: 0 !important;
}

.product-name {
  min-height: 38px;
  font-size: 14px !important;
  line-height: 1.45 !important;
  font-weight: 600 !important;
}

.product-price {
  font-size: 17px !important;
  font-weight: 750 !important;
}

.category-ellipse-section {
  padding: 32px 0 28px !important;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%) !important;
}

.category-ellipse-section .swiper-wrapper {
  align-items: stretch;
}

.category-ellipse-section .category {
  min-height: 178px !important;
  padding: 16px 14px 18px !important;
  border-radius: 8px !important;
  border: 1px solid rgba(15, 23, 42, .08) !important;
  background: rgba(255, 255, 255, .92) !important;
  box-shadow: 0 12px 30px rgba(15, 23, 42, .06) !important;
}

.category-ellipse-section .category:hover {
  border-color: rgba(37, 99, 235, .28) !important;
  box-shadow: 0 20px 42px rgba(15, 23, 42, .12) !important;
}

.category-ellipse-section .category-media {
  width: 104px !important;
  height: 92px !important;
  margin: 0 auto 14px !important;
  border-radius: 8px !important;
  background: linear-gradient(180deg, #f8fafc, #eef4ff) !important;
  overflow: hidden;
}

.category-ellipse-section .category-media img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.category-ellipse-section .category-name {
  color: #111827 !important;
  font-size: 14px !important;
  line-height: 1.25 !important;
  font-weight: 650 !important;
  text-transform: none !important;
}

.intro-section,
.intro-section .swiper-container,
.intro-section .swiper-wrapper,
.intro-section .swiper-slide {
  min-height: 620px !important;
}

.intro-section .banner {
  background-size: cover !important;
  background-position: center right !important;
}

.intro-section .banner:before {
  background: linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.9) 34%, rgba(255,255,255,.52) 60%, rgba(255,255,255,.08) 100%) !important;
}

.intro-section .container {
  min-height: 620px !important;
  display: flex !important;
  align-items: center !important;
}

.intro-section .banner-content {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  transform: none !important;
  max-width: 620px !important;
  padding: 34px 0 44px !important;
  margin-left: 44px !important;
}

.intro-section .slide-image,
.intro-section img.slide-image {
  display: none !important;
}

.intro-section .banner-subtitle {
  display: inline-flex !important;
  align-items: center;
  min-height: 34px;
  padding: 7px 15px !important;
  margin-bottom: 18px !important;
  border-radius: 8px !important;
  color: #1d4ed8 !important;
  background: rgba(219, 234, 254, .86) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
}

.intro-section .banner-title {
  max-width: 680px;
  color: #0f172a !important;
  font-size: 64px !important;
  line-height: 1.02 !important;
  font-weight: 750 !important;
  letter-spacing: 0 !important;
}

.intro-section p {
  max-width: 560px;
  color: #475569 !important;
  font-size: 22px !important;
  line-height: 1.45 !important;
  font-weight: 400 !important;
}

.intro-section .btn {
  min-height: 48px;
  padding: 0 28px !important;
  border-radius: 8px !important;
  color: #ffffff !important;
  border-color: #2563eb !important;
  background: #2563eb !important;
  box-shadow: 0 16px 30px rgba(37, 99, 235, .24);
}

.intro-section .banner-content,
.intro-section .banner-content *,
.banner.h-100 .banner-content,
.banner.h-100 .banner-content *,
.category-banner-wrapper .banner-content,
.category-banner-wrapper .banner-content * {
  opacity: 1 !important;
  visibility: visible !important;
}

.banner.h-100,
.category-banner-wrapper .banner {
  min-height: 360px;
  border: 1px solid rgba(15, 23, 42, .08);
  background-position: center !important;
}

.banner.h-100:before,
.category-banner-wrapper .banner:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, .74), rgba(15, 23, 42, .38) 45%, rgba(15, 23, 42, .06));
  z-index: 0;
}

.banner.h-100 .banner-content,
.category-banner-wrapper .banner-content {
  position: relative !important;
  z-index: 1;
  max-width: 330px;
  padding: 28px !important;
  border-radius: 8px;
  color: #ffffff !important;
  background: rgba(15, 23, 42, .46);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 18px 44px rgba(15, 23, 42, .22);
  backdrop-filter: blur(10px);
}

.banner.h-100 .banner-content *,
.category-banner-wrapper .banner-content * {
  color: #ffffff !important;
  text-shadow: 0 1px 12px rgba(0, 0, 0, .26);
}

.banner.h-100 .banner-title,
.category-banner-wrapper .banner-title {
  font-size: 34px !important;
  line-height: 1.08 !important;
  font-weight: 700 !important;
}

.banner.h-100 .btn,
.category-banner-wrapper .btn {
  border-color: rgba(255,255,255,.72) !important;
  color: #ffffff !important;
  background: rgba(255,255,255,.12) !important;
}

.category-banner-wrapper {
  margin-top: 18px !important;
  margin-bottom: 34px !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.category-banner-wrapper > [class*="col-"] {
  margin-bottom: 22px !important;
}

.category-banner-wrapper .banner.banner-fixed {
  height: 270px !important;
  min-height: 270px !important;
  border-radius: 8px !important;
  border: 1px solid rgba(15, 23, 42, .08) !important;
  background: #ffffff !important;
  box-shadow: 0 24px 64px rgba(15, 23, 42, .11) !important;
  overflow: hidden;
  isolation: isolate;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.category-banner-wrapper .banner.banner-fixed:hover {
  transform: translateY(-3px);
  border-color: rgba(37, 99, 235, .18) !important;
  box-shadow: 0 30px 76px rgba(15, 23, 42, .15) !important;
}

.category-banner-wrapper .banner.banner-fixed figure,
.category-banner-wrapper .banner.banner-fixed figure img {
  width: 100% !important;
  height: 270px !important;
}

.category-banner-wrapper .banner.banner-fixed figure {
  margin: 0 !important;
}

.category-banner-wrapper .banner.banner-fixed figure img {
  object-fit: cover !important;
  object-position: center right !important;
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.01);
  transition: transform .28s ease, filter .28s ease;
}

.category-banner-wrapper .banner.banner-fixed:hover figure img {
  transform: scale(1.045);
  filter: saturate(1.08) contrast(1.04);
}

.category-banner-wrapper .banner.banner-fixed:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.86) 36%, rgba(255,255,255,.36) 66%, rgba(255,255,255,.03) 100%),
    linear-gradient(180deg, rgba(37,99,235,.05), rgba(255,255,255,.02));
}

.category-banner-wrapper .banner.banner-fixed:after {
  content: "Keşfet";
  position: absolute;
  left: 34px;
  bottom: 28px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 15px;
  border-radius: 8px;
  color: #ffffff;
  background: #0f172a;
  box-shadow: 0 14px 28px rgba(15, 23, 42, .18);
  font-size: 13px;
  line-height: 1;
  font-weight: 750;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .2s ease, transform .2s ease;
}

.category-banner-wrapper .banner.banner-fixed:hover:after {
  opacity: 1;
  transform: translateY(0);
}

.category-banner-wrapper .banner.banner-fixed .banner-content {
  position: absolute !important;
  top: 50% !important;
  left: 34px !important;
  right: auto !important;
  transform: translateY(-50%) !important;
  z-index: 2 !important;
  width: 58%;
  max-width: 390px;
  padding: 0 0 46px !important;
  color: #0f172a !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.category-banner-wrapper .banner.banner-fixed,
.category-banner-wrapper .banner.banner-fixed *,
.category-banner-wrapper .banner.banner-fixed figure,
.category-banner-wrapper .banner.banner-fixed img,
.category-banner-wrapper .banner.banner-fixed .banner-content * {
  opacity: 1 !important;
  visibility: visible !important;
}

.category-banner-wrapper .banner.banner-fixed .banner-subtitle {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin-bottom: 12px !important;
  padding: 6px 12px !important;
  border-radius: 8px;
  color: #1d4ed8 !important;
  background: rgba(219, 234, 254, .96);
  box-shadow: 0 10px 22px rgba(37, 99, 235, .08);
  font-size: 13px !important;
  line-height: 1.2 !important;
  font-weight: 700 !important;
}

.category-banner-wrapper .banner.banner-fixed .banner-title {
  margin-bottom: 14px !important;
  color: #0f172a !important;
  font-size: 32px !important;
  line-height: 1.08 !important;
  font-weight: 760 !important;
  text-transform: none !important;
}

.category-banner-wrapper .banner.banner-fixed .banner-title span {
  display: block;
  margin-top: 2px;
  color: #334155 !important;
  font-size: 25px !important;
  line-height: 1.16 !important;
  font-weight: 500 !important;
  text-transform: none !important;
}

.category-banner-wrapper .banner.banner-fixed .banner-price-info {
  color: #475569 !important;
  font-size: 15.5px !important;
  line-height: 1.4 !important;
  font-weight: 560 !important;
}

.header-top .dropdown {
  position: relative;
}

.header-top .dropdown > a {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  padding: 0 12px !important;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  color: #ffffff !important;
  background: rgba(255, 255, 255, .06);
}

.header-top .dropdown > a:hover {
  background: rgba(255, 255, 255, .12);
}

.header-top .dropdown-box {
  top: 0 !important;
  right: calc(100% + 8px) !important;
  left: auto !important;
  min-width: 178px !important;
  min-height: 34px;
  padding: 4px !important;
  border-radius: 8px !important;
  border: 1px solid rgba(255, 255, 255, .12) !important;
  background: #111827 !important;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .28) !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: translateY(6px) !important;
  transition: opacity .16s ease, transform .16s ease, visibility .16s ease !important;
}

.header-top .dropdown.show > .dropdown-box,
.header-top .dropdown.pc-open > .dropdown-box {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateY(0) !important;
}

.header-top .dropdown:not(.pc-open):not(.show) > .dropdown-box {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.header-top .dropdown-box:before,
.header-top .dropdown-box:after {
  display: none !important;
}

.header-top .dropdown-box a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  min-height: 26px;
  padding: 0 9px !important;
  border-radius: 8px;
  color: rgba(255, 255, 255, .86) !important;
  font-size: 13px !important;
  line-height: 1.2 !important;
}

.header-top .dropdown-box a:hover {
  color: #ffffff !important;
  background: rgba(37, 99, 235, .48);
}

.pc-language-label + .dropdown-box {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.pc-language-label .fa {
  display: none !important;
}

.footer-newsletter {
  display: none !important;
}

.footer {
  position: relative;
  background: linear-gradient(180deg, #101827 0%, #0b1220 100%) !important;
  color: rgba(255, 255, 255, .68) !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.footer:before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(37,99,235,.16), transparent 34%, rgba(34,197,94,.08));
}

.footer .container {
  position: relative;
  z-index: 1;
}

.footer .footer-top {
  padding: 72px 0 44px !important;
}

.footer .widget {
  margin-bottom: 0 !important;
}

.footer .logo-footer img {
  width: 174px !important;
  height: auto !important;
  margin-bottom: 28px !important;
}

.footer .widget-title {
  margin-bottom: 22px !important;
  color: #ffffff !important;
  font-size: 13px !important;
  line-height: 1.2 !important;
  font-weight: 750 !important;
  text-transform: uppercase;
}

.footer p,
.footer li,
.footer a {
  color: rgba(255, 255, 255, .68) !important;
  font-size: 14px !important;
  line-height: 1.9 !important;
  font-weight: 400 !important;
}

.footer a:hover {
  color: #ffffff !important;
}

.footer .widget-about-title {
  color: rgba(255, 255, 255, .52) !important;
}

.footer .widget-about-call {
  color: #ffffff !important;
  font-size: 22px !important;
  font-weight: 750 !important;
}

.footer .social-icons .social-icon {
  width: 38px !important;
  height: 38px !important;
  border-radius: 8px !important;
  color: #ffffff !important;
}

.footer .footer-bottom {
  padding: 24px 0 !important;
  border-top: 1px solid rgba(255,255,255,.13) !important;
}

.footer .copyright,
.footer .payment-label {
  color: rgba(255,255,255,.72) !important;
  font-size: 13px !important;
  line-height: 1.6 !important;
}

.footer .payment {
  display: none !important;
}

@media (max-width: 1199px) {
  .intro-section .banner-title {
    font-size: 54px !important;
  }
}

@media (min-width: 992px) {
  .intro-section .banner-content {
    margin-left: 320px !important;
    max-width: 560px !important;
  }
}

@media (max-width: 991px) {
  .intro-section,
  .intro-section .swiper-container,
  .intro-section .swiper-wrapper,
  .intro-section .swiper-slide,
  .intro-section .container {
    min-height: 520px !important;
  }

  .intro-section .banner-content {
    margin-left: 20px !important;
    padding-right: 24px !important;
  }

  .intro-section .banner-title {
    font-size: 42px !important;
  }

  .intro-section p {
    font-size: 18px !important;
  }

  .banner.h-100 .banner-content,
  .category-banner-wrapper .banner-content {
    max-width: calc(100% - 36px);
  }

  .footer .footer-top {
    padding: 52px 0 28px !important;
  }
}

@media (max-width: 575px) {
  .intro-section,
  .intro-section .swiper-container,
  .intro-section .swiper-wrapper,
  .intro-section .swiper-slide,
  .intro-section .container {
    min-height: 500px !important;
  }

  .intro-section .banner-content {
    margin-left: 0 !important;
    padding: 44px 16px !important;
  }

  .intro-section .banner-title {
    font-size: 34px !important;
  }

  .intro-section p {
    font-size: 16px !important;
  }

  .category-ellipse-section .category {
    min-width: 128px !important;
    max-width: 128px !important;
    min-height: 164px !important;
  }

  .category-ellipse-section .category-media {
    width: 92px !important;
    height: 82px !important;
  }

  .banner.h-100,
  .category-banner-wrapper .banner {
    min-height: 320px;
  }

  .banner.h-100 .banner-content,
  .category-banner-wrapper .banner-content {
    padding: 22px !important;
  }
}

/* Product detail tabs */
.pc-product-main {
  padding-bottom: 72px !important;
}

.pc-product-main .product-single {
  align-items: flex-start !important;
  overflow: visible !important;
  height: auto !important;
  max-height: none !important;
}

.pc-product-main .product-single > [class*="col-"] {
  height: auto !important;
  min-height: 0 !important;
  align-self: flex-start !important;
}

.pc-product-main .page-content,
.pc-product-main .row.gutter-lg,
.pc-product-main .main-content {
  height: auto !important;
  min-height: 0 !important;
  overflow: visible !important;
}

.pc-product-main .zoomImg,
.pc-product-main .zoomContainer,
.pc-product-main .zoomLens,
.pc-product-main .zoomWindowContainer {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.single-product .product-tabs,
.pc-product-tabs {
  position: relative;
  z-index: 2;
  clear: both;
  margin: 42px auto 52px !important;
  padding: 0 !important;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(15, 23, 42, .08);
  overflow: hidden;
}

.pc-product-tabs .nav-tabs {
  display: flex;
  gap: 0;
  margin: 0 !important;
  padding: 0 24px !important;
  border: 0 !important;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: inset 0 -1px 0 rgba(15, 23, 42, .08);
}

.pc-product-tabs .nav-item {
  margin: 0 !important;
}

.pc-product-tabs .nav-link {
  position: relative;
  min-height: 70px;
  display: inline-flex !important;
  align-items: center;
  margin: 0 !important;
  padding: 0 26px !important;
  border: 0 !important;
  color: #64748b !important;
  background: transparent !important;
  font-size: 17px !important;
  line-height: 1.2 !important;
  font-weight: 650 !important;
  text-transform: none !important;
}

.pc-product-tabs .nav-link:after {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 0;
  height: 3px;
  border-radius: 3px 3px 0 0;
  background: transparent;
}

.pc-product-tabs .nav-link.active,
.pc-product-tabs .nav-link:hover {
  color: #0f172a !important;
}

.pc-product-tabs .nav-link.active:after {
  background: #2563eb;
}

.pc-product-tab-content,
.pc-product-tabs .tab-content {
  position: relative;
  min-height: 240px;
  padding: 34px 34px 36px !important;
  background: #ffffff !important;
}

.pc-product-tabs .tab-pane {
  float: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: #334155 !important;
  opacity: 1 !important;
}

.pc-product-tabs .tab-pane:not(.active) {
  display: none !important;
}

.pc-product-tabs .tab-pane.active {
  display: block !important;
  visibility: visible !important;
}

.pc-product-description {
  max-width: 920px;
  color: #334155;
  font-size: 16px;
  line-height: 1.85;
  font-weight: 400;
}

.pc-product-description,
.pc-product-description * {
  letter-spacing: 0 !important;
}

.pc-product-description b,
.pc-product-description strong {
  color: #0f172a;
  font-weight: 700;
}

.pc-product-description p,
.pc-product-description div {
  margin-bottom: 12px;
}

.pc-product-description ul,
.pc-product-description ol {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 20px;
}

.pc-product-description li {
  color: #334155;
  line-height: 1.75;
}

.pc-product-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
  padding-top: 26px;
  border-top: 1px solid rgba(15, 23, 42, .08);
}

.pc-product-proof {
  min-height: 132px;
  padding: 18px;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.pc-product-proof-icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 12px;
  border-radius: 8px;
  background: #eff6ff;
  font-size: 20px;
  line-height: 1;
}

.pc-product-proof strong {
  display: block;
  margin-bottom: 6px;
  color: #0f172a;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 750;
}

.pc-product-proof p {
  margin: 0;
  color: #64748b;
  font-size: 13px;
  line-height: 1.55;
}

.pc-product-tabs .review-form-wrapper,
.pc-product-tabs .comments {
  max-width: 900px;
}

.pc-product-tabs .review-form textarea {
  min-height: 132px;
  border-radius: 8px;
  border-color: rgba(15, 23, 42, .12);
  background: #f8fafc;
}

.pc-product-tabs .review-form .btn {
  min-height: 44px;
  padding: 0 22px;
  border-radius: 8px;
  background: #2563eb !important;
  border-color: #2563eb !important;
}

.vendor-product-section {
  position: relative;
  z-index: 1;
  clear: both;
  margin-top: 38px !important;
  margin-bottom: 64px !important;
}

.newsletter-popup {
  z-index: 9999;
}

@media (max-width: 767px) {
  .pc-product-tabs {
    margin: 28px 0 38px !important;
  }

  .pc-product-tabs .nav-tabs {
    padding: 0 8px !important;
    overflow-x: auto;
  }

  .pc-product-tabs .nav-link {
    min-height: 58px;
    padding: 0 16px !important;
    white-space: nowrap;
    font-size: 15px !important;
  }

  .pc-product-tabs .nav-link:after {
    left: 16px;
    right: 16px;
  }

  .pc-product-tab-content,
  .pc-product-tabs .tab-content {
    padding: 24px 18px 26px !important;
  }

  .pc-product-proof-grid {
    grid-template-columns: 1fr;
  }
}

/* Premium hero slider refinement */
.intro-section {
  position: relative;
  overflow: hidden;
  background: #f8fafc;
}

.intro-section:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(15, 23, 42, .12), transparent);
  z-index: 3;
}

.intro-section,
.intro-section .swiper-container,
.intro-section .swiper-wrapper,
.intro-section .swiper-slide,
.intro-section .container {
  min-height: 660px !important;
}

.intro-section .banner {
  background-position: center right !important;
  background-size: cover !important;
}

.intro-section .banner:before {
  background:
    linear-gradient(90deg, rgba(248,250,252,1) 0%, rgba(248,250,252,.96) 25%, rgba(248,250,252,.74) 48%, rgba(248,250,252,.18) 75%, rgba(248,250,252,.04) 100%),
    linear-gradient(180deg, rgba(255,255,255,.22), rgba(37,99,235,.08)) !important;
}

.intro-section .banner-content {
  margin-left: 0 !important;
  max-width: 610px !important;
  padding: 52px 0 62px !important;
}

@media (min-width: 992px) {
  .intro-section .banner-content {
    margin-left: 330px !important;
    max-width: 590px !important;
  }
}

.intro-section .banner-subtitle {
  min-height: 36px;
  margin-bottom: 18px !important;
  padding: 8px 14px !important;
  border: 1px solid rgba(37, 99, 235, .14);
  color: #1d4ed8 !important;
  background: rgba(239, 246, 255, .94) !important;
  box-shadow: 0 12px 24px rgba(37, 99, 235, .08);
}

.intro-section .banner-subtitle .text-secondary {
  margin-left: 4px;
}

.intro-section .banner-title {
  margin-bottom: 18px !important;
  color: #0b1220 !important;
  font-size: 62px !important;
  line-height: 1.03 !important;
  font-weight: 780 !important;
  text-shadow: 0 1px 0 rgba(255,255,255,.36);
}

.intro-section p {
  max-width: 520px;
  margin-bottom: 28px !important;
  color: #475569 !important;
  font-size: 20px !important;
  line-height: 1.55 !important;
}

.intro-section .btn {
  min-width: 210px;
  min-height: 52px;
  justify-content: center;
  border-radius: 8px !important;
  color: #ffffff !important;
  background: linear-gradient(135deg, #2563eb, #1d4ed8) !important;
  border: 0 !important;
  box-shadow: 0 18px 38px rgba(37, 99, 235, .28);
  font-size: 14px !important;
  font-weight: 750 !important;
}

.intro-section .btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 44px rgba(37, 99, 235, .34);
}

.intro-section .swiper-pagination {
  bottom: 34px !important;
  left: 50% !important;
  width: auto !important;
  transform: translateX(-50%);
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 14px 34px rgba(15, 23, 42, .12);
  backdrop-filter: blur(12px);
}

.intro-section .swiper-pagination-bullet {
  width: 26px !important;
  height: 4px !important;
  margin: 0 4px !important;
  border-radius: 999px !important;
  background: #cbd5e1 !important;
  opacity: 1 !important;
}

.intro-section .swiper-pagination-bullet-active {
  background: #2563eb !important;
}

.intro-section .swiper-button-next,
.intro-section .swiper-button-prev {
  width: 44px !important;
  height: 44px !important;
  border-radius: 8px !important;
  border: 1px solid rgba(15, 23, 42, .08);
  color: #0f172a !important;
  background: rgba(255,255,255,.82) !important;
  box-shadow: 0 16px 34px rgba(15, 23, 42, .12);
  backdrop-filter: blur(12px);
}

.intro-section .swiper-button-next:hover,
.intro-section .swiper-button-prev:hover {
  color: #ffffff !important;
  background: #2563eb !important;
  border-color: #2563eb;
}

@media (max-width: 1199px) {
  .intro-section .banner-title {
    font-size: 52px !important;
  }
}

@media (max-width: 991px) {
  .intro-section,
  .intro-section .swiper-container,
  .intro-section .swiper-wrapper,
  .intro-section .swiper-slide,
  .intro-section .container {
    min-height: 560px !important;
  }

  .intro-section .banner-content {
    margin-left: 0 !important;
    padding: 48px 22px 70px !important;
  }

  .intro-section .banner-title {
    font-size: 42px !important;
  }

  .intro-section p {
    font-size: 18px !important;
  }
}

@media (max-width: 575px) {
  .intro-section,
  .intro-section .swiper-container,
  .intro-section .swiper-wrapper,
  .intro-section .swiper-slide,
  .intro-section .container {
    min-height: 520px !important;
  }

  .intro-section .banner:before {
    background: linear-gradient(90deg, rgba(248,250,252,.98), rgba(248,250,252,.88), rgba(248,250,252,.32)) !important;
  }

  .intro-section .banner-title {
    font-size: 34px !important;
  }

  .intro-section p {
    font-size: 16px !important;
  }
}

/* Final hero and topbar polish */
.intro-section,
.intro-section .swiper-container,
.intro-section .swiper-wrapper,
.intro-section .swiper-slide,
.intro-section .container {
  min-height: 620px !important;
}

.intro-section .banner:before {
  background:
    linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.94) 31%, rgba(255,255,255,.62) 55%, rgba(255,255,255,.12) 82%, rgba(255,255,255,.02) 100%),
    linear-gradient(180deg, rgba(37,99,235,.08), rgba(15,23,42,.03)) !important;
}

.intro-section .banner-content {
  padding: 42px 0 58px !important;
}

@media (min-width: 992px) {
  .intro-section .banner-content {
    margin-left: 330px !important;
    max-width: 650px !important;
  }
}

.intro-section .banner-subtitle {
  border-color: rgba(37, 99, 235, .18) !important;
  color: #1d4ed8 !important;
  background: rgba(239, 246, 255, .96) !important;
  font-size: 13px !important;
  font-weight: 760 !important;
}

.intro-section .banner-title {
  max-width: 650px;
  margin-bottom: 16px !important;
  color: #07111f !important;
  font-size: 58px !important;
  line-height: 1.04 !important;
  font-weight: 760 !important;
}

.intro-section p {
  color: #475569 !important;
  font-size: 19px !important;
  line-height: 1.55 !important;
}

.intro-section .btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-width: 178px;
  min-height: 48px;
  padding: 0 22px !important;
  border-radius: 8px !important;
  background: #0f172a !important;
  box-shadow: 0 18px 34px rgba(15, 23, 42, .22);
  text-transform: none !important;
  line-height: 1 !important;
  white-space: nowrap;
}

.intro-section .btn i {
  margin-left: 9px;
}

.header-top .dropdown-box {
  z-index: 10020 !important;
}

/* Premium shop/category page */
.pc-shop-main {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 58%, #ffffff 100%);
}

.pc-shop-page {
  padding-top: 34px !important;
}

.pc-shop-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 24px;
  padding: 22px 24px;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 8px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 18px 48px rgba(15, 23, 42, .06);
}

.pc-shop-eyebrow {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  margin-bottom: 10px;
  padding: 5px 10px;
  border-radius: 8px;
  color: #1d4ed8;
  background: #eff6ff;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 750;
}

.pc-shop-heading h1 {
  margin: 0 0 6px;
  color: #0f172a;
  font-size: 32px;
  line-height: 1.15;
  font-weight: 780;
}

.pc-shop-heading p {
  max-width: 680px;
  margin: 0;
  color: #64748b;
  font-size: 15px;
  line-height: 1.55;
}

.pc-shop-stats {
  min-width: 142px;
  padding: 14px 16px;
  border: 1px solid rgba(37, 99, 235, .14);
  border-radius: 8px;
  background: linear-gradient(180deg, #eff6ff, #ffffff);
  text-align: right;
}

.pc-shop-stats strong {
  display: block;
  color: #1d4ed8;
  font-size: 30px;
  line-height: 1;
  font-weight: 780;
}

.pc-shop-stats span {
  color: #64748b;
  font-size: 12px;
  line-height: 1.3;
}

.pc-shop-main .shop-content {
  align-items: flex-start;
}

.pc-shop-main .shop-sidebar {
  padding-right: 8px;
}

.pc-shop-menu {
  padding: 18px !important;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(15, 23, 42, .07);
}

.pc-shop-menu .widget-title {
  margin: 0 0 14px !important;
  padding-bottom: 14px !important;
  border-bottom: 1px solid rgba(15, 23, 42, .08);
  color: #0f172a !important;
  font-size: 16px !important;
  font-weight: 780 !important;
}

.pc-shop-menu .widget-body {
  display: grid;
  gap: 6px;
  margin: 0 !important;
  padding: 0 !important;
}

.pc-shop-menu li {
  margin: 0 !important;
}

.pc-shop-category-link {
  display: flex !important;
  align-items: center;
  justify-content: flex-start !important;
  gap: 10px;
  min-height: 42px;
  padding: 8px 10px !important;
  border: 1px solid transparent;
  border-radius: 8px;
  color: #334155 !important;
  font-size: 14px !important;
  line-height: 1.25 !important;
  font-weight: 550 !important;
  text-align: left !important;
  opacity: 1 !important;
}

.pc-shop-category-link:before,
.pc-shop-category-link:after {
  display: none !important;
}

.pc-shop-category-link span:last-child,
.pc-shop-category-link strong {
  flex: 1;
  min-width: 0;
  color: inherit !important;
  text-align: left !important;
  opacity: 1 !important;
}

.pc-shop-category-link span {
  position: static !important;
  inset: auto !important;
  transform: none !important;
}

.pc-shop-category-link:hover,
.pc-shop-category-link.active {
  color: #0f172a !important;
  border-color: rgba(37, 99, 235, .16);
  background: #eff6ff;
}

.pc-shop-menu-icon {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 8px;
  background: #f8fafc;
  font-size: 15px;
  line-height: 1;
}

.pc-shop-category-link.active .pc-shop-menu-icon,
.pc-shop-category-link:hover .pc-shop-menu-icon {
  background: #ffffff;
}

.pc-shop-parent-link {
  margin-bottom: 6px;
  color: #1d4ed8 !important;
}

.pc-shop-hero {
  position: relative;
  min-height: 290px !important;
  margin-bottom: 28px !important;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 8px !important;
  background-size: cover !important;
  background-position: center right !important;
  box-shadow: 0 22px 54px rgba(15, 23, 42, .08);
  overflow: hidden;
  isolation: isolate;
}

.pc-shop-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(15, 23, 42, .78) 0%, rgba(15, 23, 42, .54) 39%, rgba(15, 23, 42, .12) 72%, rgba(15, 23, 42, .02) 100%),
    linear-gradient(180deg, rgba(37,99,235,.18), transparent);
}

.pc-shop-hero .banner-content {
  position: relative;
  z-index: 1;
  max-width: 540px;
  padding: 0 42px !important;
}

.pc-shop-hero .banner-subtitle {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin-bottom: 14px !important;
  padding: 6px 12px !important;
  border-radius: 8px;
  color: #bfdbfe !important;
  background: rgba(37, 99, 235, .22);
  font-size: 13px !important;
  line-height: 1.2 !important;
  font-weight: 700 !important;
}

.pc-shop-hero .banner-title {
  margin: 0 0 18px !important;
  color: #ffffff !important;
  font-size: 44px !important;
  line-height: 1.03 !important;
  font-weight: 780 !important;
  text-transform: none !important;
}

.pc-shop-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pc-shop-hero-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  color: rgba(255, 255, 255, .86);
  background: rgba(255, 255, 255, .1);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 650;
  backdrop-filter: blur(10px);
}

.pc-shop-products {
  row-gap: 24px !important;
}

.pc-shop-products .product-wrap {
  margin-bottom: 0 !important;
}

.pc-shop-product-card {
  height: 100%;
  border: 1px solid rgba(15, 23, 42, .08) !important;
  border-radius: 8px !important;
  background: #ffffff !important;
  box-shadow: 0 16px 42px rgba(15, 23, 42, .07) !important;
}

.pc-shop-product-card:hover {
  border-color: rgba(37, 99, 235, .24) !important;
  box-shadow: 0 24px 58px rgba(15, 23, 42, .12) !important;
}

.pc-shop-product-card .product-media {
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, #ffffff, #f8fafc) !important;
}

.pc-shop-product-card .product-media img {
  object-fit: cover !important;
}

.pc-shop-product-card .product-cat a {
  color: #94a3b8 !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  text-transform: uppercase;
}

.pc-shop-product-card .product-name {
  margin-bottom: 12px !important;
}

.pc-shop-product-card .product-action-horizontal {
  border-radius: 8px;
  box-shadow: 0 18px 34px rgba(15, 23, 42, .14);
}

.pc-shop-pagination {
  margin: 34px 0 0 !important;
  padding: 18px 20px !important;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 38px rgba(15, 23, 42, .05);
}

.pc-shop-pagination .showing-info {
  color: #64748b !important;
  font-size: 14px !important;
}

.pc-shop-pagination .showing-info span {
  color: #0f172a !important;
  font-weight: 780 !important;
}

.pc-shop-description {
  margin: 34px 0 0;
  padding: 24px !important;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 8px;
  color: #334155;
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(15, 23, 42, .06);
  font-size: 15px;
  line-height: 1.75;
}

@media (max-width: 991px) {
  .pc-shop-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .pc-shop-stats {
    width: 100%;
    text-align: left;
  }

  .pc-shop-hero {
    min-height: 240px !important;
  }

  .pc-shop-hero .banner-content {
    padding: 0 26px !important;
  }

  .pc-shop-hero .banner-title {
    font-size: 36px !important;
  }
}

@media (max-width: 575px) {
  .pc-shop-heading {
    padding: 18px;
  }

  .pc-shop-heading h1 {
    font-size: 26px;
  }

  .pc-shop-hero .banner-title {
    font-size: 30px !important;
  }

  .pc-shop-hero-badges {
    display: none;
  }
}

/* Product options and color swatches */
.product-single .product-variation-form.varyant {
  align-items: flex-start !important;
  display: grid !important;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 12px;
  margin-bottom: 14px !important;
  padding: 14px;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 8px;
  background: #f8fafc;
}

.product-single .product-variation-form.varyant label {
  margin: 0 !important;
  padding-top: 10px;
  color: #0f172a !important;
  font-size: 13px !important;
  line-height: 1.25;
  font-weight: 750 !important;
}

.product-single .product-variation-form.varyant .product-variations {
  width: 100%;
}

.product-single .product-variation-form.varyant select.form-select {
  width: 100%;
  min-height: 44px;
  padding: 0 42px 0 14px;
  border: 1px solid rgba(15, 23, 42, .12);
  border-radius: 8px;
  color: #0f172a;
  background-color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  outline: 0;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .04);
}

.product-single .product-variation-form.varyant select.form-select:focus {
  border-color: rgba(37, 99, 235, .42);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, .12);
}

.product-single .product-image-swatch {
  margin-top: 14px;
  padding: 14px;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 8px;
  background: #ffffff;
}

.product-single .product-image-swatch label {
  display: block;
  margin-bottom: 12px;
  color: #0f172a !important;
  font-size: 13px !important;
  font-weight: 750 !important;
}

.product-single .renk-swatch {
  width: 34px !important;
  height: 34px !important;
  margin-right: 8px !important;
  border: 2px solid #ffffff !important;
  outline: 1px solid rgba(15, 23, 42, .16);
  box-shadow: 0 8px 18px rgba(15, 23, 42, .08);
  transition: transform .16s ease, outline-color .16s ease, box-shadow .16s ease;
}

.product-single .renk-swatch:hover {
  transform: translateY(-1px);
  outline-color: #2563eb;
  box-shadow: 0 12px 24px rgba(37, 99, 235, .18);
}

@media (max-width: 575px) {
  .product-single .product-variation-form.varyant {
    grid-template-columns: 1fr;
  }

  .product-single .product-variation-form.varyant label {
    padding-top: 0;
  }
}

/* Premium newsletter and footer */
.footer-newsletter {
  display: block !important;
  position: relative;
  padding: 34px 0 !important;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, .96) 0%, rgba(15, 23, 42, .98) 58%, rgba(22, 163, 74, .9) 128%) !important;
  overflow: hidden;
}

.footer-newsletter:before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .12), transparent 28%, rgba(255, 255, 255, .08) 72%, transparent);
}

.footer-newsletter .container {
  position: relative;
  z-index: 1;
}

.footer-newsletter .row {
  min-height: 96px;
}

.footer-newsletter .icon-box {
  align-items: center !important;
  margin-bottom: 0 !important;
}

.footer-newsletter .icon-box-icon {
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-right: 18px !important;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  color: #ffffff !important;
  background: rgba(255, 255, 255, .14);
  box-shadow: 0 16px 36px rgba(0, 0, 0, .16);
}

.footer-newsletter .icon-box-icon i {
  font-size: 24px !important;
}

.footer-newsletter .icon-box-title {
  margin: 0 0 6px !important;
  color: #ffffff !important;
  font-size: 20px !important;
  line-height: 1.25 !important;
  font-weight: 750 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}

.footer-newsletter p {
  margin: 0 !important;
  max-width: 520px;
  color: rgba(255, 255, 255, .78) !important;
  font-size: 14px !important;
  line-height: 1.65 !important;
}

.footer-newsletter form.input-wrapper {
  display: flex !important;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 6px !important;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px !important;
  background: rgba(255, 255, 255, .12);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .18);
}

.footer-newsletter .form-control {
  min-height: 50px !important;
  margin: 0 !important;
  padding: 0 18px !important;
  border: 0 !important;
  border-radius: 8px !important;
  color: #0f172a !important;
  background: #ffffff !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  box-shadow: none !important;
}

.footer-newsletter .form-control::placeholder {
  color: #64748b !important;
  opacity: 1;
}

.footer-newsletter .btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  min-height: 50px;
  padding: 0 22px !important;
  border: 1px solid rgba(255, 255, 255, .14) !important;
  border-radius: 8px !important;
  color: #ffffff !important;
  background: #0f172a !important;
  font-size: 14px !important;
  font-weight: 750 !important;
  box-shadow: 0 16px 34px rgba(15, 23, 42, .24);
}

.footer-newsletter .btn:hover {
  transform: translateY(-1px);
  background: #111827 !important;
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, .08);
  background:
    linear-gradient(180deg, #0f172a 0%, #0a1020 100%) !important;
}

.footer:before {
  background:
    linear-gradient(90deg, rgba(37, 99, 235, .18), transparent 36%, rgba(34, 197, 94, .09)) !important;
}

.footer .footer-top {
  padding: 76px 0 46px !important;
}

.footer .footer-top .row {
  row-gap: 34px;
}

.footer .widget-about {
  max-width: 360px;
}

.footer .logo-footer img {
  width: 188px !important;
  margin-bottom: 26px !important;
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, .18));
}

.footer .widget-title {
  position: relative;
  margin-bottom: 24px !important;
  padding-bottom: 13px;
  color: #ffffff !important;
  font-size: 13px !important;
  font-weight: 780 !important;
  letter-spacing: 0 !important;
}

.footer .widget-title:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, #60a5fa, #22c55e);
}

.footer .widget-body li {
  margin-bottom: 6px !important;
}

.footer p,
.footer li,
.footer a {
  color: rgba(226, 232, 240, .76) !important;
  font-size: 14px !important;
  line-height: 1.85 !important;
}

.footer .widget-body a {
  display: inline-flex;
  align-items: center;
  transition: color .16s ease, transform .16s ease;
}

.footer .widget-body a:hover {
  color: #ffffff !important;
  transform: translateX(3px);
}

.footer .widget-about-title {
  margin-bottom: 6px !important;
  color: rgba(226, 232, 240, .58) !important;
  font-size: 13px !important;
}

.footer .widget-about-call {
  display: inline-flex;
  margin-bottom: 14px !important;
  color: #ffffff !important;
  font-size: 24px !important;
  line-height: 1.3 !important;
  font-weight: 780 !important;
}

.footer .widget-about-desc {
  max-width: 310px;
  margin-bottom: 22px !important;
  color: rgba(226, 232, 240, .68) !important;
}

.footer .social-icons {
  display: flex !important;
  gap: 10px;
}

.footer .social-icons .social-icon {
  width: 40px !important;
  height: 40px !important;
  margin: 0 !important;
  border: 1px solid rgba(255, 255, 255, .12) !important;
  border-radius: 8px !important;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .14);
  transition: transform .16s ease, filter .16s ease;
}

.footer .social-icons .social-icon:hover {
  transform: translateY(-2px);
  filter: saturate(1.1);
}

.footer .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 0 28px !important;
  border-top: 1px solid rgba(255, 255, 255, .12) !important;
}

.footer .copyright,
.footer .payment-label,
.footer .payment-label a {
  color: rgba(226, 232, 240, .72) !important;
  font-size: 13px !important;
  line-height: 1.6 !important;
}

.footer .payment-label a {
  color: #93c5fd !important;
  font-weight: 650 !important;
}

@media (max-width: 991px) {
  .footer-newsletter {
    padding: 30px 0 !important;
  }

  .footer-newsletter form.input-wrapper {
    margin-top: 18px;
  }

  .footer .footer-top {
    padding: 56px 0 32px !important;
  }

  .footer .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 575px) {
  .footer-newsletter .icon-box {
    align-items: flex-start !important;
  }

  .footer-newsletter .icon-box-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    margin-right: 14px !important;
  }

  .footer-newsletter .icon-box-title {
    font-size: 18px !important;
  }

  .footer-newsletter form.input-wrapper {
    align-items: stretch;
    flex-direction: column;
    padding: 8px !important;
  }

  .footer-newsletter .btn {
    width: 100%;
  }
}
/* Ahbersu realistic photo and shop filter refinements */
.category-ellipse-section .category {
  min-width: 146px !important;
  max-width: 146px !important;
}

.category-ellipse-section .category-media {
  width: 116px !important;
  height: 104px !important;
  background: #ffffff !important;
}

.category-ellipse-section .category-media img {
  object-fit: contain !important;
  object-position: center top !important;
  padding: 6px !important;
  background: linear-gradient(180deg, #ffffff 0%, #f6fafb 100%) !important;
}

.intro-section .banner {
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: right 9% center !important;
  background-color: #f8fafc !important;
}

.intro-section .banner:before {
  background:
    linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.94) 34%, rgba(255,255,255,.62) 58%, rgba(255,255,255,.16) 100%),
    radial-gradient(circle at 76% 45%, rgba(47,143,138,.18), transparent 38%) !important;
}

.category-banner-wrapper .banner.banner-fixed {
  background: linear-gradient(135deg, #ffffff 0%, #f7fbfc 100%) !important;
}

.category-banner-wrapper .banner.banner-fixed figure {
  background: #ffffff !important;
}

.category-banner-wrapper .banner.banner-fixed figure img {
  object-fit: contain !important;
  object-position: right center !important;
  padding: 16px 24px 16px 42% !important;
  background: linear-gradient(90deg, #ffffff 0%, #f8fafc 48%, #eef7f7 100%) !important;
}

.category-banner-wrapper .banner.banner-fixed:before {
  background:
    linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.92) 43%, rgba(255,255,255,.46) 68%, rgba(255,255,255,.08) 100%),
    linear-gradient(180deg, rgba(47,143,138,.08), rgba(255,255,255,.02)) !important;
}

.banner.h-100 {
  min-height: 480px !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center bottom !important;
  background-color: #f8fafc !important;
}

.banner.h-100:before {
  background:
    linear-gradient(180deg, rgba(15,23,42,.74) 0%, rgba(15,23,42,.42) 28%, rgba(15,23,42,.06) 62%, rgba(15,23,42,0) 100%),
    radial-gradient(circle at 50% 70%, rgba(47,143,138,.12), transparent 40%) !important;
}

.banner.h-100 .banner-content {
  max-width: none !important;
  margin: 0 22px !important;
  background: rgba(15,23,42,.58) !important;
}

.product-media img,
.pc-shop-product-card .product-media img {
  object-fit: contain !important;
  object-position: center top !important;
  padding: 10px !important;
  background: #ffffff !important;
}

.pc-shop-filter-panel {
  position: sticky;
  top: 18px;
  padding: 18px !important;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(15, 23, 42, .08);
}

.pc-shop-filter-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 16px !important;
  color: #0f172a;
  font-size: 18px !important;
  font-weight: 800 !important;
}

.pc-shop-filter-title .btn-reset {
  padding: 0 !important;
  border: 0 !important;
  color: #0f766e !important;
  background: transparent !important;
  font-size: 13px !important;
  font-weight: 700 !important;
}

.pc-shop-filter-form {
  display: grid;
  gap: 12px;
}

.pc-shop-filter-form label {
  display: grid;
  gap: 7px;
  margin: 0 !important;
  color: #334155;
  font-size: 13px !important;
  font-weight: 760 !important;
}

.pc-shop-filter-form input[type="text"],
.pc-shop-filter-form input[type="number"],
.pc-shop-filter-form select {
  width: 100% !important;
  min-height: 44px;
  padding: 0 12px !important;
  border: 1px solid rgba(15, 23, 42, .14) !important;
  border-radius: 8px !important;
  color: #0f172a !important;
  background: #f8fafc !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.65);
  font-size: 14px !important;
}

.pc-shop-filter-form input:focus,
.pc-shop-filter-form select:focus {
  border-color: rgba(47,143,138,.55) !important;
  background: #ffffff !important;
  box-shadow: 0 0 0 4px rgba(47,143,138,.12) !important;
  outline: 0 !important;
}

.pc-filter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.pc-filter-check {
  display: flex !important;
  align-items: center;
  gap: 9px !important;
  min-height: 42px;
  padding: 9px 11px;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 8px;
  background: #f8fafc;
  color: #334155 !important;
  font-size: 13px !important;
  font-weight: 700 !important;
}

.pc-filter-check input {
  width: 16px !important;
  height: 16px !important;
  accent-color: #0f766e;
}

.pc-shop-filter-form button[type="submit"] {
  min-height: 46px;
  border: 0 !important;
  border-radius: 8px !important;
  color: #ffffff !important;
  background: linear-gradient(135deg, #0f766e, #2563eb) !important;
  box-shadow: 0 16px 30px rgba(15, 118, 110, .18);
  font-weight: 800 !important;
}

.pc-shop-menu {
  margin-top: 18px !important;
  padding: 18px !important;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(15, 23, 42, .06);
}

.pc-shop-menu .widget-title {
  color: #0f172a !important;
  font-size: 17px !important;
  font-weight: 800 !important;
}

.pc-shop-menu .widget-body li a {
  display: flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 9px !important;
  border-radius: 8px;
  color: #334155 !important;
  font-weight: 650 !important;
}

.pc-shop-menu .widget-body li a:hover {
  color: #0f766e !important;
  background: rgba(47,143,138,.08);
}

@media (max-width: 991px) {
  .pc-shop-filter-panel {
    position: static;
    margin-bottom: 22px;
  }

  .category-banner-wrapper .banner.banner-fixed figure img {
    padding-left: 46% !important;
  }
}

@media (max-width: 575px) {
  .category-ellipse-section .category {
    min-width: 130px !important;
    max-width: 130px !important;
  }

  .category-ellipse-section .category-media {
    width: 102px !important;
    height: 94px !important;
  }

  .category-banner-wrapper .banner.banner-fixed {
    height: 330px !important;
    min-height: 330px !important;
  }

  .category-banner-wrapper .banner.banner-fixed figure,
  .category-banner-wrapper .banner.banner-fixed figure img {
    height: 330px !important;
  }

  .category-banner-wrapper .banner.banner-fixed figure img {
    padding: 128px 18px 18px !important;
    object-position: center bottom !important;
  }

  .category-banner-wrapper .banner.banner-fixed .banner-content {
    top: 24px !important;
    left: 18px !important;
    right: 18px !important;
    width: auto !important;
    transform: none !important;
  }

  .banner.h-100 {
    min-height: 460px !important;
  }

  .pc-filter-grid {
    grid-template-columns: 1fr;
  }
}

.intro-section .banner {
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center right !important;
}

.intro-section .banner:before {
  background:
    linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.9) 34%, rgba(255,255,255,.52) 58%, rgba(255,255,255,.1) 100%),
    linear-gradient(180deg, rgba(47,143,138,.08), rgba(255,255,255,.02)) !important;
}

.category-banner-wrapper .banner.banner-fixed figure img[src*="ahbersu-banner-"] {
  object-fit: cover !important;
  object-position: center right !important;
  padding: 0 !important;
  background: #f8fafc !important;
}

.category-banner-wrapper .banner.banner-fixed:has(img[src*="ahbersu-banner-"]):before {
  background:
    linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.92) 35%, rgba(255,255,255,.5) 60%, rgba(255,255,255,.08) 100%),
    linear-gradient(180deg, rgba(47,143,138,.06), transparent) !important;
}

.banner.h-100[style*="ahbersu-vitrin-"] {
  background-size: cover !important;
  background-position: center bottom !important;
  background-color: #f8fafc !important;
}

.banner.h-100[style*="ahbersu-vitrin-"]:before {
  background:
    linear-gradient(180deg, rgba(15,23,42,.76) 0%, rgba(15,23,42,.46) 30%, rgba(15,23,42,.12) 62%, rgba(15,23,42,0) 100%),
    linear-gradient(90deg, rgba(15,23,42,.24), rgba(15,23,42,0) 64%) !important;
}

.banner.h-100[style*="ahbersu-vitrin-"] .banner-content {
  width: calc(100% - 40px) !important;
  max-width: none !important;
  margin: 20px !important;
  padding: 24px 24px 26px !important;
  overflow: hidden !important;
}

.banner.h-100[style*="ahbersu-vitrin-"] .banner-subtitle {
  margin-bottom: 10px !important;
  font-size: 20px !important;
  line-height: 1.15 !important;
}

.banner.h-100[style*="ahbersu-vitrin-"] .banner-title {
  max-width: 100% !important;
  margin-bottom: 18px !important;
  font-size: 32px !important;
  line-height: 1.08 !important;
  word-break: normal !important;
  overflow-wrap: anywhere !important;
}

.banner.h-100[style*="ahbersu-vitrin-"] .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  max-width: 100% !important;
  min-height: 42px !important;
  padding: 8px 12px !important;
  white-space: normal !important;
  text-align: center !important;
  font-size: 12px !important;
  line-height: 1.25 !important;
  overflow-wrap: anywhere !important;
}

.banner.h-100[style*="ahbersu-vitrin-"] .btn i {
  display: none !important;
}

/* Equal product card sizing for tall shower set photos */
.product-wrapper .product-wrap,
.pc-shop-products .product-wrap {
  display: flex !important;
}

.product-wrapper .product,
.pc-shop-products .product {
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
  min-height: 500px !important;
}

.product-wrapper .product-media,
.pc-shop-products .product-media,
.pc-shop-product-card .product-media {
  flex: 0 0 330px !important;
  width: 100% !important;
  height: 330px !important;
  aspect-ratio: auto !important;
  margin: 0 !important;
  overflow: hidden !important;
  background: #f8fafc !important;
}

.product-wrapper .product-media img,
.pc-shop-products .product-media img,
.pc-shop-product-card .product-media img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  padding: 14px !important;
}

.product-wrapper .product-details,
.pc-shop-products .product-details {
  display: flex !important;
  flex: 1 1 auto !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  min-height: 170px !important;
  padding: 18px 16px 20px !important;
}

.product-wrapper .product-name,
.pc-shop-products .product-name {
  display: -webkit-box !important;
  min-height: 42px !important;
  max-height: 42px !important;
  margin-bottom: 14px !important;
  overflow: hidden !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product-wrapper .ratings-container,
.pc-shop-products .ratings-container {
  min-height: 22px !important;
  margin-top: auto !important;
  margin-bottom: 8px !important;
}

.product-wrapper .product-price,
.pc-shop-products .product-price {
  min-height: 28px !important;
}

@media (max-width: 575px) {
  .product-wrapper .product,
  .pc-shop-products .product {
    min-height: 430px !important;
  }

  .product-wrapper .product-media,
  .pc-shop-products .product-media,
  .pc-shop-product-card .product-media {
    flex-basis: 250px !important;
    height: 250px !important;
  }
}
