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

/* Tatli Patik shop sidebar order and collapsible filters */
.pc-shop-main .sticky-sidebar {
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
}

.pc-shop-menu {
  order: 1 !important;
  margin-bottom: 0 !important;
}

.pc-shop-filter-panel {
  order: 2 !important;
  margin-bottom: 0 !important;
}

.pc-filter-accordion {
  display: block;
}

.pc-filter-toggle {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 2px 0;
  color: #0f172a;
  cursor: pointer;
  list-style: none;
}

.pc-filter-toggle::-webkit-details-marker {
  display: none;
}

.pc-filter-toggle span {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.pc-filter-toggle b {
  color: #0f172a;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 850;
}

.pc-filter-toggle small {
  color: #64748b;
  font-size: 12px;
  line-height: 1.25;
  font-weight: 700;
}

.pc-filter-toggle i {
  position: relative;
  display: inline-grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  border: 1px solid rgba(255, 91, 141, .22);
  border-radius: 50%;
  background: linear-gradient(180deg, #ffffff, #fff2f7);
  box-shadow: 0 12px 24px rgba(255, 91, 141, .12);
}

.pc-filter-toggle i:before,
.pc-filter-toggle i:after {
  content: "";
  position: absolute;
  width: 14px;
  height: 2px;
  border-radius: 99px;
  background: #f25586;
  transition: transform .18s ease, opacity .18s ease;
}

.pc-filter-toggle i:after {
  transform: rotate(90deg);
}

.pc-filter-accordion[open] .pc-filter-toggle {
  margin-bottom: 12px;
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(15, 23, 42, .08);
}

.pc-filter-accordion[open] .pc-filter-toggle i:after {
  transform: rotate(90deg) scaleX(.2);
  opacity: 0;
}

.pc-filter-accordion-body {
  display: grid;
  gap: 12px;
}

.pc-filter-accordion-body .pc-filter-head {
  justify-content: flex-end;
  margin: -2px 0 0;
  padding: 0;
  border: 0;
}

.pc-filter-accordion-body .pc-filter-head span {
  display: none !important;
}

.pc-filter-accordion-body .pc-filter-meta {
  margin-bottom: 0;
}

.pc-filter-accordion-body .pc-shop-filter-form {
  gap: 12px;
}

@media (max-width: 991px) {
  .pc-shop-main .sticky-sidebar {
    gap: 12px !important;
  }

  .pc-filter-toggle {
    min-height: 52px;
  }
}

/* Final override: premium baby boutique product cards */
.pc-shop-products {
  row-gap: 28px !important;
}

.pc-shop-products .product-wrap {
  padding: 0 10px !important;
}

.pc-shop-product-card {
  height: 100% !important;
  border: 1px solid rgba(242, 85, 134, .24) !important;
  border-radius: 22px !important;
  background: linear-gradient(180deg, #fff, #fff7fb) !important;
  box-shadow: 0 20px 48px rgba(86, 51, 68, .09) !important;
  overflow: hidden !important;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease !important;
}

.pc-shop-product-card:hover {
  transform: translateY(-6px) !important;
  border-color: rgba(242, 85, 134, .45) !important;
  box-shadow: 0 28px 68px rgba(242, 85, 134, .16) !important;
}

.pc-shop-product-card .product-media {
  position: relative !important;
  margin: 8px 8px 0 !important;
  border-radius: 18px !important;
  aspect-ratio: 1 / .86 !important;
  background: linear-gradient(135deg, #fff3f8, #fff) !important;
  overflow: hidden !important;
}

.pc-shop-product-card .product-media > a,
.pc-shop-product-card .product-media img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
}

.pc-shop-product-card .product-media img {
  object-fit: cover !important;
  object-position: center !important;
  border-radius: 18px !important;
  filter: saturate(1.05) contrast(1.02) !important;
  transition: transform .32s ease, filter .32s ease !important;
}

.pc-shop-product-card:hover .product-media img {
  transform: scale(1.055) !important;
  filter: saturate(1.1) contrast(1.04) brightness(1.02) !important;
}

.pc-shop-product-card .product-action-horizontal {
  position: absolute !important;
  left: 16px !important;
  right: 16px !important;
  bottom: 14px !important;
  z-index: 5 !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 44px !important;
  gap: 8px !important;
  width: auto !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  opacity: 0 !important;
  transform: translateY(12px) !important;
  transition: opacity .22s ease, transform .22s ease !important;
}

.pc-shop-product-card:hover .product-action-horizontal {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

@media (hover: none) {
  .pc-shop-product-card .product-action-horizontal {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
}

.tp-card-action {
  display: inline-flex !important;
  height: 44px !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  border-radius: 999px !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  text-decoration: none !important;
  box-shadow: 0 14px 30px rgba(242, 85, 134, .22) !important;
}

.tp-card-action svg {
  width: 17px !important;
  height: 17px !important;
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 2.2 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}

.tp-card-action-primary {
  color: #fff !important;
  background: linear-gradient(135deg, #fb6a9c, #ef3f7d) !important;
}

.tp-card-action-ghost {
  color: #ef3f7d !important;
  background: rgba(255, 255, 255, .96) !important;
}

.pc-shop-product-card .product-details {
  display: flex !important;
  min-height: 188px !important;
  flex-direction: column !important;
  align-items: center !important;
  padding: 18px 16px 20px !important;
  text-align: center !important;
}

.pc-shop-product-card .product-cat a {
  border-radius: 999px !important;
  color: #7b6070 !important;
  background: #fff3f8 !important;
}

.pc-shop-product-card .product-name {
  min-height: 44px !important;
  margin: 0 0 10px !important;
}

.pc-shop-product-card .product-name a {
  color: #3f3040 !important;
  font-size: 15px !important;
  line-height: 1.42 !important;
  font-weight: 850 !important;
}

.pc-shop-product-card .product-pa-wrapper {
  width: 100% !important;
  margin-top: auto !important;
}

.pc-shop-product-card .product-price {
  justify-content: center !important;
}

.pc-shop-product-card .product-price ins {
  color: #ef3f7d !important;
  font-size: 19px !important;
  font-weight: 950 !important;
}

.pc-shop-product-card .product-price del {
  color: #b9a9b1 !important;
  font-size: 12px !important;
  font-weight: 700 !important;
}

@media (max-width: 575px) {
  .tp-card-action span {
    display: none !important;
  }

  .pc-shop-product-card .product-action-horizontal {
    grid-template-columns: 44px 44px !important;
    justify-content: center !important;
  }
}

/* Final premium shop product cards */
.pc-shop-products {
  row-gap: 28px !important;
}

.pc-shop-products .product-wrap {
  padding: 0 10px !important;
}

.pc-shop-product-card {
  position: relative !important;
  height: 100% !important;
  border: 1px solid rgba(242, 85, 134, .22) !important;
  border-radius: 22px !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(255, 247, 251, .92)) !important;
  box-shadow: 0 18px 42px rgba(86, 51, 68, .08) !important;
  overflow: hidden !important;
  transform: translateZ(0);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease !important;
}

.pc-shop-product-card:hover {
  transform: translateY(-6px) !important;
  border-color: rgba(242, 85, 134, .42) !important;
  box-shadow: 0 26px 64px rgba(242, 85, 134, .16) !important;
}

.pc-shop-product-card .product-media {
  position: relative !important;
  margin: 8px 8px 0 !important;
  border-radius: 18px !important;
  background:
    radial-gradient(circle at 25% 20%, rgba(255, 255, 255, .95), transparent 34%),
    linear-gradient(135deg, #fff3f8, #ffffff) !important;
  aspect-ratio: 1 / .86;
  overflow: hidden !important;
}

.pc-shop-product-card .product-media > a {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
}

.pc-shop-product-card .product-media img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  border-radius: 18px !important;
  filter: saturate(1.04) contrast(1.02);
  transition: transform .32s ease, filter .32s ease !important;
}

.pc-shop-product-card:hover .product-media img {
  transform: scale(1.055) !important;
  filter: saturate(1.09) contrast(1.04) brightness(1.02);
}

.pc-shop-product-card .product-media:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .02) 48%, rgba(67, 37, 50, .24) 100%);
  opacity: 0;
  transition: opacity .24s ease;
}

.pc-shop-product-card:hover .product-media:before {
  opacity: 1;
}

.pc-shop-product-card .product-action-horizontal {
  position: absolute !important;
  left: 16px !important;
  right: 16px !important;
  bottom: 14px !important;
  z-index: 4 !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 44px !important;
  gap: 8px !important;
  width: auto !important;
  min-width: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  opacity: 0;
  transform: translateY(12px) !important;
  transition: opacity .22s ease, transform .22s ease !important;
}

.pc-shop-product-card:hover .product-action-horizontal {
  opacity: 1;
  transform: translateY(0) !important;
}

.tp-card-action {
  display: inline-flex !important;
  min-width: 0;
  height: 44px !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  border-radius: 999px !important;
  font-size: 13px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
  text-decoration: none !important;
  box-shadow: 0 14px 30px rgba(242, 85, 134, .22) !important;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease !important;
}

.tp-card-action svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tp-card-action-primary {
  color: #fff !important;
  background: linear-gradient(135deg, #fb6a9c, #ef3f7d) !important;
}

.tp-card-action-ghost {
  color: #ef3f7d !important;
  background: rgba(255, 255, 255, .94) !important;
  box-shadow: 0 12px 24px rgba(72, 39, 53, .14) !important;
}

.tp-card-action:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 18px 34px rgba(242, 85, 134, .3) !important;
}

.pc-shop-product-card .pc-product-badge {
  top: 14px !important;
  left: 14px !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #fb6a9c, #ef3f7d) !important;
  box-shadow: 0 14px 28px rgba(242, 85, 134, .24) !important;
}

.pc-shop-product-card .product-details {
  display: flex !important;
  min-height: 188px !important;
  flex-direction: column !important;
  align-items: center !important;
  padding: 18px 16px 20px !important;
  text-align: center !important;
}

.pc-shop-product-card .product-cat {
  order: 1;
  margin-bottom: 8px !important;
}

.pc-shop-product-card .product-cat a {
  min-height: 26px !important;
  padding: 5px 10px !important;
  border: 1px solid rgba(242, 85, 134, .1) !important;
  border-radius: 999px !important;
  color: #7b6070 !important;
  background: #fff3f8 !important;
  font-size: 10px !important;
  font-weight: 900 !important;
}

.pc-shop-product-card .product-name {
  order: 2;
  min-height: 44px !important;
  margin: 0 0 10px !important;
}

.pc-shop-product-card .product-name a {
  color: #3f3040 !important;
  font-size: 15px !important;
  line-height: 1.42 !important;
  font-weight: 850 !important;
}

.pc-shop-product-card:hover .product-name a {
  color: #ef3f7d !important;
}

.pc-shop-product-card .ratings-container {
  order: 3;
  min-height: 20px !important;
  margin: 0 0 10px !important;
}

.pc-shop-product-card .ratings-full {
  font-size: 13px !important;
  filter: saturate(1.18) drop-shadow(0 3px 8px rgba(245, 158, 11, .16));
}

.pc-shop-product-card .product-pa-wrapper {
  order: 4;
  width: 100%;
  margin-top: auto !important;
}

.pc-shop-product-card .product-price {
  display: inline-flex !important;
  align-items: baseline !important;
  justify-content: center !important;
  gap: 8px !important;
  margin: 0 !important;
}

.pc-shop-product-card .product-price ins {
  color: #ef3f7d !important;
  font-size: 19px !important;
  font-weight: 950 !important;
}

.pc-shop-product-card .product-price del {
  color: #b9a9b1 !important;
  font-size: 12px !important;
  font-weight: 700 !important;
}

@media (hover: none) {
  .pc-shop-product-card .product-action-horizontal {
    opacity: 1;
    transform: none !important;
  }
}

@media (max-width: 575px) {
  .pc-shop-products .product-wrap {
    padding: 0 6px !important;
  }

  .pc-shop-product-card .product-details {
    min-height: 170px !important;
    padding: 14px 12px 16px !important;
  }

  .tp-card-action span {
    display: none;
  }

  .pc-shop-product-card .product-action-horizontal {
    grid-template-columns: 44px 44px !important;
    justify-content: center !important;
  }
}

body {
  background: #f8fafc;
  color: var(--pc-ink);
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  letter-spacing: 0;
  overflow-x: hidden;
}

.page-wrapper {
  background: #fff;
}

.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 live 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;
}

.mfp-bg {
  background: rgba(15, 23, 42, .62) !important;
  backdrop-filter: blur(10px);
}

.mfp-wrap .newsletter-popup {
  overflow: visible !important;
}

.newsletter-popup {
  width: min(580px, calc(100vw - 28px)) !important;
  max-width: 580px !important;
  border-radius: 8px !important;
  background:
    linear-gradient(145deg, rgba(15, 23, 42, .94), rgba(30, 64, 175, .88)),
    url("../../upload/pandacado-photo-home-living.jpg") center/cover no-repeat !important;
  box-shadow: 0 34px 90px rgba(15, 23, 42, .28);
  overflow: hidden;
}

.newsletter-popup:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 23, 42, .88), rgba(15, 23, 42, .64) 58%, rgba(15, 23, 42, .2));
  pointer-events: none;
}

.newsletter-popup .newsletter-content {
  position: relative;
  z-index: 1;
  width: min(430px, 100%);
  padding: 46px 38px !important;
  color: #ffffff;
  background: transparent !important;
}

.newsletter-popup h4 {
  display: inline-flex;
  width: fit-content;
  min-height: 32px;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  margin: 0 0 16px !important;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  color: rgba(255, 255, 255, .92) !important;
  background: rgba(255, 255, 255, .12);
  font-size: 12px !important;
  line-height: 1.15 !important;
  font-weight: 720 !important;
  text-transform: none !important;
  backdrop-filter: blur(10px);
}

.newsletter-popup h4 .text-primary {
  color: #93c5fd !important;
  margin-right: 2px;
}

.newsletter-popup h2 {
  margin: 0 0 12px !important;
  color: #ffffff !important;
  font-size: 40px !important;
  line-height: 1.05 !important;
  font-weight: 760 !important;
}

.newsletter-popup p {
  max-width: 360px;
  margin: 0 0 24px !important;
  color: rgba(255, 255, 255, .78) !important;
  font-size: 15px !important;
  line-height: 1.7 !important;
}

.newsletter-popup .input-wrapper {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  margin-bottom: 16px !important;
  border: 0 !important;
  background: transparent !important;
}

.newsletter-popup .form-control {
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, .18) !important;
  border-radius: 8px !important;
  color: #ffffff !important;
  background: rgba(255, 255, 255, .12) !important;
  box-shadow: none !important;
}

.newsletter-popup .form-control::placeholder {
  color: rgba(255, 255, 255, .66) !important;
}

.newsletter-popup .btn {
  min-height: 48px;
  padding: 0 18px !important;
  border: 0 !important;
  border-radius: 8px !important;
  color: #0f172a !important;
  background: #ffffff !important;
  font-size: 13px !important;
  font-weight: 780 !important;
  box-shadow: 0 18px 34px rgba(0, 0, 0, .18);
}

.newsletter-popup .form-checkbox {
  gap: 10px;
  color: rgba(255, 255, 255, .72) !important;
}

.newsletter-popup .custom-checkbox {
  width: 16px;
  height: 16px;
  accent-color: #2563eb;
}

.newsletter-popup label {
  margin: 0 !important;
  color: rgba(255, 255, 255, .72) !important;
}

.mfp-close {
  width: 42px !important;
  height: 42px !important;
  border-radius: 8px !important;
  color: #ffffff !important;
  background: rgba(255, 255, 255, .12) !important;
  opacity: 1 !important;
  line-height: 42px !important;
  transition: background .18s ease, transform .18s var(--pc-ease);
}

.mfp-close:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, .2) !important;
}

@media (max-width: 575px) {
  .newsletter-popup .newsletter-content {
    padding: 34px 22px !important;
  }

  .newsletter-popup h2 {
    font-size: 32px !important;
  }

  .newsletter-popup .input-wrapper {
    grid-template-columns: 1fr;
  }

  .newsletter-popup .btn {
    width: 100%;
  }
}

/* Premium mobile drawer */
.mobile-menu-wrapper {
  z-index: 2147482000 !important;
}

.mobile-menu-overlay {
  background: rgba(15, 23, 42, .54) !important;
  backdrop-filter: blur(8px);
}

.mobile-menu-close {
  top: 18px !important;
  right: 18px !important;
  width: 40px !important;
  height: 40px !important;
  border-radius: 8px !important;
  color: #0f172a !important;
  background: rgba(255, 255, 255, .92) !important;
  box-shadow: 0 16px 34px rgba(15, 23, 42, .16);
}

.pc-mobile-drawer {
  width: min(356px, 88vw) !important;
  max-width: min(356px, 88vw) !important;
  padding: 22px 18px 28px !important;
  color: #0f172a !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(248, 250, 252, .98)) !important;
  box-shadow: 28px 0 80px rgba(15, 23, 42, .22);
}

.pc-mobile-drawer:before {
  content: "Tatlı Patik";
  display: flex;
  min-height: 42px;
  align-items: center;
  margin-bottom: 16px;
  padding: 0 12px;
  border: 1px solid rgba(37, 99, 235, .12);
  border-radius: 8px;
  color: #0f172a;
  background: #ffffff;
  font-size: 18px;
  line-height: 1;
  font-weight: 820;
  box-shadow: 0 14px 34px rgba(15, 23, 42, .06);
}

.pc-mobile-drawer .input-wrapper {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 44px;
  gap: 8px;
  margin-bottom: 18px !important;
  border: 0 !important;
  background: transparent !important;
}

.pc-mobile-drawer .form-control {
  min-height: 44px !important;
  border: 1px solid rgba(15, 23, 42, .1) !important;
  border-radius: 8px !important;
  color: #0f172a !important;
  background: #ffffff !important;
  font-size: 13px !important;
  box-shadow: 0 12px 26px rgba(15, 23, 42, .05) !important;
}

.pc-mobile-drawer .btn-search {
  min-width: 44px;
  min-height: 44px;
  border: 0 !important;
  border-radius: 8px !important;
  color: #ffffff !important;
  background: linear-gradient(135deg, #2563eb, #1d4ed8) !important;
  box-shadow: 0 14px 28px rgba(37, 99, 235, .22);
}

.pc-mobile-drawer .nav-tabs {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 14px !important;
  border: 0 !important;
}

.pc-mobile-drawer .nav-item {
  margin: 0 !important;
}

.pc-mobile-drawer .nav-link {
  display: flex !important;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  margin: 0 !important;
  border: 1px solid rgba(15, 23, 42, .08) !important;
  border-radius: 8px !important;
  color: #475569 !important;
  background: #ffffff !important;
  font-size: 13px !important;
  font-weight: 760 !important;
  text-transform: none !important;
  transition: color .18s ease, background .18s ease, border-color .18s ease;
}

.pc-mobile-drawer .nav-link.active {
  color: #ffffff !important;
  border-color: transparent !important;
  background: linear-gradient(135deg, #0f172a, #1d4ed8) !important;
  box-shadow: 0 14px 28px rgba(15, 23, 42, .14);
}

.pc-mobile-drawer .mobile-menu {
  display: grid;
  gap: 7px;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

.pc-mobile-drawer .mobile-menu li {
  margin: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.pc-mobile-drawer .tab-content,
.pc-mobile-drawer .tab-pane,
.pc-mobile-drawer .mobile-menu ul {
  border: 0 !important;
  background: transparent !important;
}

.pc-mobile-drawer .mobile-menu > li > a,
.pc-mobile-drawer .mobile-menu .megamenu a {
  display: flex !important;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  padding: 9px 12px !important;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 8px;
  color: #0f172a !important;
  background: #ffffff !important;
  font-size: 13px !important;
  line-height: 1.25 !important;
  font-weight: 670 !important;
  text-transform: none !important;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .04);
  transition: transform .18s var(--pc-ease), color .18s ease, border-color .18s ease;
}

.pc-mobile-drawer .mobile-menu > li.active > a,
.pc-mobile-drawer .mobile-menu > li > a:hover,
.pc-mobile-drawer .mobile-menu .megamenu a:hover {
  transform: translateX(2px);
  color: #1d4ed8 !important;
  border-color: rgba(37, 99, 235, .2);
}

.pc-mobile-drawer .pc-menu-emoji {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  margin-right: 0 !important;
  background: #eff6ff;
  font-size: 17px;
}

.pc-mobile-drawer .mobile-menu img {
  flex: 0 0 32px;
  width: 32px !important;
  height: 32px !important;
  padding: 6px;
  border-radius: 8px;
  background: #eff6ff;
  filter: none !important;
  object-fit: contain;
}

.pc-mobile-drawer .toggle-btn {
  margin-left: auto;
}

.pc-mobile-drawer .megamenu {
  position: static !important;
  width: 100% !important;
  min-width: 0 !important;
  margin: 6px 0 0 !important;
  padding: 0 0 0 12px !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.pc-mobile-drawer .megamenu li,
.pc-mobile-drawer .megamenu ul {
  background: transparent !important;
}

.pc-mobile-drawer a[href="/favorilerim"] {
  justify-content: space-between;
  margin-top: 8px;
  color: #ffffff !important;
  border-color: transparent !important;
  background: linear-gradient(135deg, #2563eb, #16a34a) !important;
  box-shadow: 0 18px 36px rgba(37, 99, 235, .18);
}

/* Premium desktop navigation and megamenu */
.header-bottom {
  border-top: 1px solid rgba(15, 23, 42, .05) !important;
  border-bottom: 1px solid rgba(15, 23, 42, .08) !important;
  background: rgba(255, 255, 255, .94) !important;
  box-shadow: 0 14px 34px rgba(15, 23, 42, .05);
  backdrop-filter: blur(14px);
}

.header-bottom .inner-wrap {
  min-height: 58px;
}

.category-dropdown > a {
  display: inline-flex !important;
  min-height: 58px;
  align-items: center;
  gap: 10px;
  padding: 0 22px !important;
  border: 1px solid rgba(15, 23, 42, .08);
  border-top: 0;
  border-bottom: 0;
  color: #0f172a !important;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  font-size: 14px !important;
  font-weight: 780 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.category-dropdown > a i {
  color: #1d4ed8 !important;
  font-size: 20px !important;
}

.category-dropdown .dropdown-box {
  min-width: 352px !important;
  padding: 12px !important;
  border: 1px solid rgba(15, 23, 42, .08) !important;
  border-radius: 0 0 8px 8px !important;
  background: rgba(255, 255, 255, .98) !important;
  box-shadow: 0 30px 74px rgba(15, 23, 42, .14) !important;
  backdrop-filter: blur(14px);
}

.category-menu {
  display: grid !important;
  gap: 7px;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

.category-menu > li {
  position: relative;
  margin: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

.category-menu > li > a {
  display: flex !important;
  min-height: 46px;
  align-items: center;
  gap: 10px;
  padding: 8px 12px !important;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 8px;
  color: #0f172a !important;
  background: #ffffff;
  font-size: 13px !important;
  font-weight: 680 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .04);
  transition: transform .18s var(--pc-ease), border-color .18s ease, color .18s ease, background .18s ease;
}

.category-menu > li > a:hover,
.category-menu > li:hover > a {
  transform: translateX(2px);
  color: #1d4ed8 !important;
  border-color: rgba(37, 99, 235, .2);
  background: #eff6ff;
}

.category-menu > li > a:after {
  content: "›";
  margin-left: auto;
  color: #94a3b8;
  font-size: 18px;
  line-height: 1;
}

.category-menu > li > a[href="/favorilerim"],
.category-menu > li:last-child > a {
  color: #ffffff !important;
  border-color: transparent !important;
  background: linear-gradient(135deg, #2563eb, #16a34a) !important;
  box-shadow: 0 18px 36px rgba(37, 99, 235, .18);
}

.category-menu > li:last-child > a:after {
  color: rgba(255, 255, 255, .82);
}

.category-menu .pc-menu-emoji {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  margin-right: 0 !important;
  background: #eff6ff;
  font-size: 17px;
}

.category-menu img {
  flex: 0 0 32px;
  width: 32px !important;
  height: 32px !important;
  padding: 6px;
  border-radius: 8px;
  background: #eff6ff;
  object-fit: contain;
}

.category-menu .megamenu {
  left: calc(100% + 12px) !important;
  top: 0 !important;
  min-width: 620px !important;
  max-width: min(820px, calc(100vw - 440px));
  padding: 20px !important;
  border: 1px solid rgba(15, 23, 42, .08) !important;
  border-radius: 8px !important;
  background: rgba(255, 255, 255, .98) !important;
  box-shadow: 0 34px 84px rgba(15, 23, 42, .16) !important;
  backdrop-filter: blur(16px);
}

.category-menu .megamenu > li {
  padding: 0 14px 14px 0 !important;
  background: transparent !important;
}

.category-menu .megamenu .menu-title {
  margin: 0 0 8px !important;
  color: #0f172a !important;
  font-size: 14px !important;
  font-weight: 780 !important;
  text-transform: none !important;
}

.category-menu .megamenu .menu-title a {
  color: inherit !important;
}

.category-menu .megamenu .divider {
  width: 36px;
  height: 2px;
  margin: 0 0 10px !important;
  border: 0 !important;
  border-radius: 99px;
  background: linear-gradient(90deg, #2563eb, #16a34a);
}

.category-menu .megamenu li a {
  color: #475569 !important;
  font-size: 13px !important;
  line-height: 1.45 !important;
  font-weight: 600 !important;
  transition: color .16s ease, transform .16s var(--pc-ease);
}

.category-menu .megamenu li a:hover {
  color: #1d4ed8 !important;
  transform: translateX(2px);
}

.category-menu .menu-banner {
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, .08);
}

.category-menu .menu-banner img {
  width: 100% !important;
  height: 240px !important;
  padding: 0;
  border-radius: 0;
  background: transparent;
  object-fit: cover;
  transition: transform .26s var(--pc-ease);
}

.category-menu .menu-banner:hover img {
  transform: scale(1.04);
}

.main-nav .menu > li > a {
  position: relative;
  min-height: 58px;
  color: #0f172a !important;
  font-size: 14px !important;
  font-weight: 720 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.main-nav .menu > li > a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 9px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, #2563eb, #16a34a);
  opacity: 0;
  transform: scaleX(.45);
  transition: opacity .18s ease, transform .18s var(--pc-ease);
}

.main-nav .menu > li:hover > a:after,
.main-nav .menu > li.active > a:after {
  opacity: 1;
  transform: scaleX(1);
}

.main-nav .menu > li > ul {
  border: 1px solid rgba(15, 23, 42, .08) !important;
  border-radius: 8px !important;
  background: rgba(255, 255, 255, .98) !important;
  box-shadow: 0 28px 64px rgba(15, 23, 42, .13) !important;
  backdrop-filter: blur(14px);
}

.main-nav .menu > li > ul a {
  color: #334155 !important;
  font-size: 13px !important;
  font-weight: 620 !important;
}

.main-nav .menu > li > ul a:hover {
  color: #1d4ed8 !important;
  background: #eff6ff !important;
}

@media (max-width: 991px) {
  .header-bottom {
    display: none !important;
  }
}

@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%);
  overflow-x: clip;
}

.pc-shop-main .container,
.pc-shop-main .main-content,
.pc-shop-main .shop-content {
  max-width: 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-filter-panel {
  margin-bottom: 18px;
  padding: 18px !important;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 18px 46px rgba(15, 23, 42, .07);
}

.pc-mobile-filter-inline {
  display: none;
}

.pc-filter-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(15, 23, 42, .08);
}

.pc-filter-head span {
  color: #0f172a;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 780;
}

.pc-filter-head a {
  color: #2563eb !important;
  font-size: 12px !important;
  font-weight: 700 !important;
}

.pc-filter-meta {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  padding: 12px;
  border: 1px solid rgba(37, 99, 235, .14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(239, 246, 255, .96), rgba(255, 255, 255, .94));
}

.pc-filter-meta strong {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(135deg, #1d4ed8, #16a34a);
  font-size: 15px;
  font-weight: 780;
  box-shadow: 0 12px 22px rgba(37, 99, 235, .18);
}

.pc-filter-meta span {
  color: #475569;
  font-size: 13px;
  font-weight: 700;
}

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

.pc-shop-filter-form label {
  display: grid;
  gap: 7px;
  margin: 0;
}

.pc-shop-filter-form label > span {
  color: #475569;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 750;
}

.pc-shop-filter-form input,
.pc-shop-filter-form select,
.pc-shop-toolbar select {
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(15, 23, 42, .12);
  border-radius: 8px;
  color: #0f172a;
  background: #ffffff;
  font-size: 13px;
  font-weight: 550;
  outline: 0;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .04);
}

.pc-shop-filter-form input:focus,
.pc-shop-filter-form select:focus,
.pc-shop-toolbar select:focus {
  border-color: rgba(37, 99, 235, .44);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, .11);
}

.pc-filter-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 10px;
}

.pc-price-presets {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.pc-price-presets a {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 8px;
  color: #334155 !important;
  background: #ffffff;
  font-size: 12px;
  font-weight: 720;
  box-shadow: 0 10px 22px rgba(15, 23, 42, .04);
  transition: transform .16s ease, border-color .16s ease, color .16s ease, background .16s ease;
}

.pc-price-presets a:after {
  content: "→";
  color: #94a3b8;
  font-weight: 760;
}

.pc-price-presets a:hover,
.pc-price-presets a.active {
  transform: translateY(-1px);
  border-color: rgba(37, 99, 235, .24);
  color: #1d4ed8 !important;
  background: #eff6ff;
}

.pc-price-presets a.active:after {
  color: #1d4ed8;
}

.pc-filter-check {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: center;
  gap: 10px !important;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 8px;
  background: #ffffff;
}

.pc-filter-check input {
  width: 16px !important;
  min-height: 16px !important;
  flex: 0 0 16px;
  padding: 0 !important;
  box-shadow: none !important;
}

.pc-filter-check span {
  color: #0f172a !important;
  font-size: 13px !important;
  font-weight: 650 !important;
}

.pc-shop-filter-form button,
.pc-shop-empty a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  color: #ffffff !important;
  background: #0f172a;
  font-size: 13px;
  font-weight: 780;
  box-shadow: 0 16px 32px rgba(15, 23, 42, .16);
  transition: transform .16s ease, background .16s ease;
}

.pc-shop-filter-form button:after {
  content: "→";
  margin-left: 12px;
  font-size: 15px;
  line-height: 1;
  transition: transform .18s var(--pc-ease);
}

.pc-shop-filter-form button:hover:after {
  transform: translateX(2px);
}

.pc-shop-filter-form button:hover,
.pc-shop-empty a:hover {
  transform: translateY(-1px);
  background: #1d4ed8;
}

.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-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  padding: 14px 16px;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 8px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 16px 38px rgba(15, 23, 42, .05);
}

.pc-shop-toolbar strong {
  display: block;
  color: #0f172a;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 780;
}

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

.pc-shop-toolbar form {
  min-width: 190px;
  margin: 0;
}

.pc-active-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: -4px 0 20px;
}

.pc-active-filters span,
.pc-active-filters a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 12px !important;
  line-height: 1.2 !important;
  font-weight: 700 !important;
}

.pc-active-filters span {
  color: #1e3a8a !important;
  background: #eff6ff;
  border: 1px solid rgba(37, 99, 235, .12);
}

.pc-active-filters a {
  color: #0f172a !important;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, .1);
}

.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;
  overflow: hidden;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.pc-shop-product-card:hover {
  transform: translateY(-3px);
  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 {
  position: relative;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, #ffffff, #f8fafc) !important;
  overflow: hidden;
}

.pc-shop-product-card .product-media img {
  object-fit: cover !important;
  transition: transform .26s ease, filter .26s ease;
}

.pc-shop-product-card:hover .product-media img {
  transform: scale(1.035);
  filter: saturate(1.05) contrast(1.03);
}

.pc-product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 9px;
  border-radius: 8px;
  color: #ffffff;
  background: #ef4444;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(239, 68, 68, .22);
}

.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-name a {
  color: #0f172a !important;
  font-size: 15px !important;
  line-height: 1.35 !important;
  font-weight: 650 !important;
}

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

.pc-shop-product-card .product-price {
  display: inline-flex !important;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.pc-shop-product-card .product-price del {
  color: #94a3b8;
  font-size: 13px;
  font-weight: 550;
}

.pc-shop-product-card .product-price ins {
  color: #1d4ed8;
  font-size: 17px;
  line-height: 1.25;
  font-weight: 800;
  text-decoration: none;
}

.pc-shop-empty {
  padding: 46px 28px;
  border: 1px dashed rgba(15, 23, 42, .18);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  text-align: center;
  box-shadow: 0 16px 42px rgba(15, 23, 42, .05);
}

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

.pc-shop-empty h3 {
  margin: 0 0 8px;
  color: #0f172a;
  font-size: 24px;
  font-weight: 780;
}

.pc-shop-empty p {
  max-width: 460px;
  margin: 0 auto 18px;
  color: #64748b;
  font-size: 14px;
  line-height: 1.7;
}

.pc-shop-empty a {
  padding: 0 18px;
}

.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;
  }

  .pc-shop-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .pc-shop-toolbar form {
    width: 100%;
  }
}

@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;
  }

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

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

/* Premium shop refinement */
.pc-shop-main {
  background:
    radial-gradient(circle at 8% 8%, rgba(22, 163, 74, .08), transparent 28%),
    radial-gradient(circle at 92% 12%, rgba(37, 99, 235, .09), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 48%, #ffffff 100%) !important;
}

.pc-shop-page > .container {
  max-width: 1240px !important;
}

.pc-shop-heading {
  position: relative;
  overflow: hidden;
  border-color: rgba(15, 23, 42, .07) !important;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(248, 250, 252, .92)) !important;
}

.pc-shop-heading:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(37, 99, 235, .08), transparent 36%),
    linear-gradient(135deg, transparent 58%, rgba(22, 163, 74, .09));
  pointer-events: none;
}

.pc-shop-heading > * {
  position: relative;
  z-index: 1;
}

.pc-shop-heading-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.pc-shop-heading-actions a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 8px;
  color: #0f172a !important;
  background: #ffffff;
  font-size: 13px;
  font-weight: 730;
  box-shadow: 0 14px 26px rgba(15, 23, 42, .06);
  transition: transform .18s var(--pc-ease), color .18s ease, border-color .18s ease;
}

.pc-shop-heading-actions a:first-child {
  color: #ffffff !important;
  border-color: transparent;
  background: linear-gradient(135deg, #0f172a, #1d4ed8);
}

.pc-shop-heading-actions a:hover {
  transform: translateY(-2px);
  color: #1d4ed8 !important;
  border-color: rgba(37, 99, 235, .22);
}

.pc-shop-heading-actions a:first-child:hover {
  color: #ffffff !important;
}

.pc-shop-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(96px, 1fr));
  gap: 10px;
  min-width: 360px;
}

.pc-shop-stats {
  min-width: 0 !important;
  text-align: left !important;
  box-shadow: 0 16px 30px rgba(37, 99, 235, .08);
}

.pc-shop-stats:nth-child(2) {
  border-color: rgba(22, 163, 74, .16);
  background: linear-gradient(180deg, #f0fdf4, #ffffff);
}

.pc-shop-stats:nth-child(2) strong {
  color: #16a34a;
}

.pc-shop-stats:nth-child(3) {
  border-color: rgba(249, 115, 22, .18);
  background: linear-gradient(180deg, #fff7ed, #ffffff);
}

.pc-shop-stats:nth-child(3) strong {
  color: #f97316;
}

.pc-shop-filter-panel,
.pc-shop-menu,
.pc-shop-toolbar,
.pc-shop-pagination,
.pc-shop-description {
  border-color: rgba(15, 23, 42, .07) !important;
  box-shadow: 0 20px 52px rgba(15, 23, 42, .07) !important;
}

.pc-shop-filter-panel {
  position: sticky;
  top: 96px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(248, 250, 252, .96)) !important;
}

.pc-filter-head span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pc-filter-head span:before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: linear-gradient(135deg, #16a34a, #1d4ed8);
  box-shadow: 0 0 0 5px rgba(37, 99, 235, .08);
}

.pc-filter-meta {
  background:
    linear-gradient(135deg, rgba(239, 246, 255, .96), rgba(240, 253, 244, .88)) !important;
}

.pc-search-presets {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: -3px;
}

.pc-search-presets a,
.pc-shop-toolbar-chips a {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 8px;
  color: #334155 !important;
  background: #ffffff;
  font-size: 12px !important;
  line-height: 1.2 !important;
  font-weight: 720 !important;
  box-shadow: 0 10px 22px rgba(15, 23, 42, .04);
  transition: transform .16s var(--pc-ease), color .16s ease, border-color .16s ease, background .16s ease;
}

.pc-search-presets a:hover,
.pc-shop-toolbar-chips a:hover,
.pc-shop-toolbar-chips a.active {
  transform: translateY(-1px);
  color: #1d4ed8 !important;
  border-color: rgba(37, 99, 235, .2);
  background: #eff6ff;
}

.pc-price-presets a {
  position: relative;
  overflow: hidden;
}

.pc-price-presets a:before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 99px;
  background: #cbd5e1;
}

.pc-price-presets a:hover:before,
.pc-price-presets a.active:before {
  background: #1d4ed8;
}

.pc-shop-filter-form input,
.pc-shop-filter-form select,
.pc-shop-toolbar select {
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s var(--pc-ease);
}

.pc-shop-filter-form input:hover,
.pc-shop-filter-form select:hover,
.pc-shop-toolbar select:hover {
  border-color: rgba(37, 99, 235, .24);
}

.pc-filter-check {
  transition: border-color .18s ease, background .18s ease, transform .18s var(--pc-ease);
}

.pc-filter-check:hover {
  transform: translateY(-1px);
  border-color: rgba(37, 99, 235, .18);
  background: #f8fafc;
}

.pc-shop-hero {
  min-height: 330px !important;
  background-attachment: scroll !important;
  box-shadow: 0 26px 64px rgba(15, 23, 42, .12) !important;
}

.pc-shop-hero:before {
  background:
    linear-gradient(90deg, rgba(15, 23, 42, .74) 0%, rgba(15, 23, 42, .48) 38%, rgba(15, 23, 42, .08) 72%, rgba(15, 23, 42, .02) 100%),
    linear-gradient(180deg, rgba(37, 99, 235, .2), rgba(22, 163, 74, .08)) !important;
}

.pc-shop-hero:after {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 0;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  pointer-events: none;
}

.pc-shop-hero .banner-content {
  padding-left: 52px !important;
}

.pc-shop-hero .banner-title {
  max-width: 560px;
  text-shadow: 0 18px 36px rgba(15, 23, 42, .28);
}

.pc-shop-toolbar {
  position: relative;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto auto;
  background: rgba(255, 255, 255, .96) !important;
}

.pc-shop-toolbar:before {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  top: 0;
  height: 3px;
  border-radius: 0 0 8px 8px;
  background: linear-gradient(90deg, #1d4ed8, #16a34a, #f97316);
}

.pc-shop-toolbar-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.pc-shop-products {
  align-items: stretch;
}

.pc-shop-products .product-wrap {
  display: flex;
}

.pc-shop-products .product-wrap > .product {
  width: 100%;
}

.pc-shop-product-card {
  transform: translateY(0);
}

.pc-shop-product-card .product-media {
  aspect-ratio: 1 / .92;
}

.pc-shop-product-card .product-media > a,
.pc-shop-product-card .product-media img {
  display: block;
  width: 100%;
  height: 100%;
}

.pc-shop-product-card .product-details {
  display: grid;
  min-height: 172px;
  align-content: start;
  padding: 18px 18px 20px !important;
}

.pc-shop-product-card .ratings-container {
  margin: 2px 0 8px !important;
}

.pc-shop-empty {
  border-style: solid !important;
}

@media (max-width: 1199px) {
  .pc-shop-stats-grid {
    grid-template-columns: 1fr;
    min-width: 164px;
  }

  .pc-shop-toolbar {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .pc-shop-toolbar-chips {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 991px) {
  .pc-shop-stats-grid {
    width: 100%;
    min-width: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pc-shop-filter-panel {
    position: relative;
    top: auto;
  }

  .pc-shop-hero .banner-content {
    padding-left: 28px !important;
  }
}

@media (max-width: 575px) {
  .pc-shop-stats-grid {
    grid-template-columns: 1fr;
  }

  .pc-shop-heading-actions a {
    flex: 1 1 140px;
  }

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

  .pc-shop-toolbar-chips {
    justify-content: flex-start;
  }

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

body:not(.mmenu-active) .pc-mobile-drawer {
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateX(-112%) !important;
}

body:not(.mmenu-active) .pc-mobile-drawer * {
  visibility: hidden !important;
}

.mmenu-active .pc-mobile-drawer {
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: translateX(0) !important;
}

.mmenu-active .pc-mobile-drawer * {
  visibility: visible;
}

/* 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%;
  }
}

/* Next-level premium interaction layer */
:root {
  --pc-radius: 8px;
  --pc-shadow-sm: 0 12px 28px rgba(15, 23, 42, .06);
  --pc-shadow-md: 0 22px 54px rgba(15, 23, 42, .11);
  --pc-shadow-lg: 0 34px 80px rgba(15, 23, 42, .16);
}

::selection {
  color: #ffffff;
  background: #2563eb;
}

a,
button,
.btn,
.product,
.product-media img,
.category,
.banner,
.pc-shop-category-link,
.header .menu > li > a {
  transition-duration: .22s !important;
  transition-timing-function: cubic-bezier(.2, .8, .2, 1) !important;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
.btn:focus-visible {
  outline: 3px solid rgba(37, 99, 235, .22) !important;
  outline-offset: 3px;
}

.header-middle {
  box-shadow: 0 12px 30px rgba(15, 23, 42, .04);
}

.header .logo img {
  transition: transform .22s cubic-bezier(.2, .8, .2, 1), filter .22s ease;
}

.header .logo:hover img {
  transform: translateY(-1px);
  filter: drop-shadow(0 10px 16px rgba(15, 23, 42, .12));
}

.header .menu > li > a {
  position: relative;
  font-weight: 720 !important;
}

.header .menu > li > a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, #2563eb, #16a34a);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s cubic-bezier(.2, .8, .2, 1);
}

.header .menu > li:hover > a:after,
.header .menu > li.active > a:after {
  transform: scaleX(1);
}

.intro-section {
  box-shadow: inset 0 -1px 0 rgba(15, 23, 42, .06);
}

.intro-section .banner {
  isolation: isolate;
}

.intro-section .banner-content {
  animation: pcHeroTextIn .72s cubic-bezier(.2, .8, .2, 1) both;
}

.intro-section img.slide-image {
  animation: pcHeroMediaIn .9s cubic-bezier(.2, .8, .2, 1) both, pcSubtleFloat 6s ease-in-out 1.1s infinite;
}

.intro-section .btn,
.category-banner-wrapper .banner:after,
.footer-newsletter .btn,
.pc-shop-filter-form button,
.pc-shop-empty a {
  position: relative;
  overflow: hidden;
}

.intro-section .btn:before,
.category-banner-wrapper .banner:after,
.footer-newsletter .btn:before,
.pc-shop-filter-form button:before,
.pc-shop-empty a:before {
  transition: transform .28s cubic-bezier(.2, .8, .2, 1), opacity .28s ease;
}

.intro-section .btn:before,
.footer-newsletter .btn:before,
.pc-shop-filter-form button:before,
.pc-shop-empty a:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .18), transparent);
  opacity: 0;
  transform: translateX(-120%);
}

.intro-section .btn:hover:before,
.footer-newsletter .btn:hover:before,
.pc-shop-filter-form button:hover:before,
.pc-shop-empty a:hover:before {
  opacity: 1;
  transform: translateX(120%);
}

.title-link-wrapper {
  position: relative;
  align-items: flex-end;
  padding-top: 10px;
  border-bottom: 1px solid rgba(15, 23, 42, .08);
}

.title-link-wrapper .title {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding-bottom: 14px;
  color: #0f172a !important;
  font-size: 28px !important;
  line-height: 1.15 !important;
  font-weight: 760 !important;
}

.title-link-wrapper .title:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 74px;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, #2563eb, #16a34a);
}

.title-link-wrapper .btn,
.title-link-wrapper a:not(.title) {
  color: #0f172a !important;
  font-size: 14px !important;
  font-weight: 720 !important;
}

.product-wrapper,
.product-wrapper-1 {
  margin-bottom: 42px;
}

.product {
  border-color: rgba(15, 23, 42, .075) !important;
  box-shadow: var(--pc-shadow-sm) !important;
  will-change: transform;
}

.product:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, .2) !important;
  box-shadow: var(--pc-shadow-md) !important;
}

.product-media {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .9), rgba(248, 250, 252, .96)) !important;
}

.product-media:after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 58%, rgba(15, 23, 42, .05));
  opacity: 0;
  transition: opacity .22s ease;
}

.product:hover .product-media:after {
  opacity: 1;
}

.product-action-vertical,
.product-action-horizontal {
  border: 1px solid rgba(15, 23, 42, .08);
  background: rgba(255, 255, 255, .94) !important;
  box-shadow: 0 18px 38px rgba(15, 23, 42, .12) !important;
  backdrop-filter: blur(14px);
}

.btn-product-icon {
  color: #0f172a !important;
}

.btn-product-icon:hover {
  color: #ffffff !important;
  background: #2563eb !important;
}

.product-details {
  padding: 18px 18px 20px !important;
}

.product-name,
.pc-shop-product-card .product-name {
  min-height: 42px;
  margin-bottom: 10px !important;
  font-size: 15px !important;
  line-height: 1.38 !important;
  font-weight: 620 !important;
}

.product-name a,
.pc-shop-product-card .product-name a {
  color: #0f172a !important;
  font-weight: inherit !important;
}

.product-name a:hover,
.pc-shop-product-card .product-name a:hover {
  color: #1d4ed8 !important;
}

.product-cat a,
.pc-shop-product-card .product-cat a {
  letter-spacing: 0 !important;
  font-weight: 720 !important;
}

.ratings-container {
  min-height: 18px;
}

.product-price,
.pc-shop-product-card .product-price {
  color: #1d4ed8 !important;
  font-size: 17px !important;
  font-weight: 760 !important;
}

.product-price .new-price,
.product-price ins,
.pc-shop-product-card .product-price ins {
  color: #1d4ed8 !important;
  font-weight: 760 !important;
  text-decoration: none !important;
}

.product-price .old-price,
.product-price del {
  color: #94a3b8 !important;
  font-size: 13px !important;
  font-weight: 520 !important;
}

.category-ellipse-section .category {
  box-shadow: var(--pc-shadow-sm);
}

.category-ellipse-section .category:hover {
  transform: translateY(-5px);
  border-color: rgba(37, 99, 235, .16);
  box-shadow: var(--pc-shadow-md);
}

.category-ellipse-section .category-media img {
  transition: transform .26s cubic-bezier(.2, .8, .2, 1), filter .26s ease;
}

.category-ellipse-section .category:hover .category-media img {
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.02);
}

.category-name {
  font-weight: 720 !important;
}

.category-banner-wrapper {
  margin-top: 6px;
}

.category-banner-wrapper .banner {
  box-shadow: var(--pc-shadow-sm);
}

.category-banner-wrapper .banner:hover {
  transform: translateY(-4px);
  box-shadow: var(--pc-shadow-lg);
}

.pc-shop-heading,
.pc-shop-filter-panel,
.pc-shop-toolbar,
.pc-shop-hero,
.pc-shop-pagination,
.pc-shop-description,
.footer-newsletter {
  box-shadow: var(--pc-shadow-sm);
}

.pc-shop-heading:hover,
.pc-shop-filter-panel:hover,
.pc-shop-toolbar:hover {
  box-shadow: var(--pc-shadow-md);
}

.pc-shop-heading h1,
.pc-shop-hero .banner-title {
  font-weight: 760 !important;
}

.pc-reveal {
  opacity: 0;
  transform: translateY(18px);
}

.pc-reveal-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .58s ease, transform .58s cubic-bezier(.2, .8, .2, 1);
}

.product-wrap.pc-reveal:nth-child(2n),
.category-ellipse-section .category.pc-reveal:nth-child(2n) {
  transition-delay: .05s;
}

.product-wrap.pc-reveal:nth-child(3n),
.category-ellipse-section .category.pc-reveal:nth-child(3n) {
  transition-delay: .1s;
}

@keyframes pcHeroTextIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pcHeroMediaIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes pcSubtleFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .pc-reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 991px) {
  .title-link-wrapper .title {
    font-size: 24px !important;
  }
}

@media (max-width: 575px) {
  .product-details {
    padding: 14px 12px 16px !important;
  }

  .product-name,
  .pc-shop-product-card .product-name {
    font-size: 13px !important;
    min-height: 38px;
  }

  .product-price,
  .pc-shop-product-card .product-price {
    font-size: 15px !important;
  }
}

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

.pc-product-main .breadcrumb-nav {
  padding-top: 18px;
  padding-bottom: 12px;
}

.pc-product-main .breadcrumb {
  padding: 14px 0 !important;
  border-bottom: 0 !important;
  color: #94a3b8 !important;
  font-size: 13px !important;
}

.pc-product-main .breadcrumb a {
  color: #64748b !important;
  font-weight: 650;
}

.pc-product-main .breadcrumb li:last-child {
  color: #0f172a !important;
  font-weight: 720;
}

.pc-product-main .main-content > .product-single {
  margin-bottom: 34px;
  padding: 26px;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 8px;
  background: rgba(255, 255, 255, .94) !important;
  box-shadow: 0 26px 70px rgba(15, 23, 42, .08) !important;
}

.pc-product-main .product-single:hover {
  transform: none !important;
  box-shadow: 0 30px 80px rgba(15, 23, 42, .1) !important;
}

.pc-product-main .product-gallery {
  position: relative;
  padding: 12px;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff, #f8fafc);
  box-shadow: 0 18px 48px rgba(15, 23, 42, .06);
  overflow: hidden;
}

.pc-product-main .product-gallery:before {
  content: "Tatlı Patik";
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 5;
  min-height: 30px;
  padding: 7px 11px;
  border-radius: 8px;
  color: #1d4ed8;
  background: rgba(239, 246, 255, .92);
  font-size: 11px;
  line-height: 1.2;
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(37, 99, 235, .1);
}

.pc-product-main .product-image {
  display: grid !important;
  place-items: center;
  aspect-ratio: 1 / 1.08;
  margin: 0 !important;
  border-radius: 8px;
  background: #ffffff !important;
  overflow: hidden;
}

.pc-product-main .product-image img,
.pc-product-main .product-image video {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform .36s cubic-bezier(.2, .8, .2, 1), filter .36s ease;
}

.pc-product-main .product-gallery:hover .product-image img {
  transform: scale(1.035);
  filter: saturate(1.04) contrast(1.02);
}

.pc-product-main .product-thumbs-wrap {
  margin-top: 14px !important;
}

.pc-product-main .product-thumb {
  border: 1px solid rgba(15, 23, 42, .08) !important;
  border-radius: 8px !important;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(15, 23, 42, .05);
}

.pc-product-main .product-thumb img,
.pc-product-main .product-thumb video {
  width: 100% !important;
  height: 84px !important;
  object-fit: cover !important;
}

.pc-product-main .product-single > .col-md-6:last-child > .product-details {
  min-height: auto;
  padding: 8px 4px 8px 26px !important;
}

.pc-product-main .product-title {
  margin-bottom: 18px !important;
  color: #0b1220 !important;
  font-size: 42px !important;
  line-height: 1.08 !important;
  font-weight: 760 !important;
  letter-spacing: 0 !important;
}

.pc-product-main .product-bm-wrapper {
  align-items: stretch !important;
  gap: 14px;
  margin-bottom: 18px !important;
}

.pc-product-main .brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  min-height: 58px;
  margin: 0 !important;
  padding: 10px 14px;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(15, 23, 42, .05);
}

.pc-product-main .brand img {
  max-width: 108px;
  max-height: 42px;
  object-fit: contain;
}

.pc-product-main .product-meta {
  display: grid;
  align-content: center;
  gap: 6px;
  flex: 1;
  margin: 0 !important;
  padding: 12px 14px;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 8px;
  background: #f8fafc;
}

.pc-product-main .product-meta,
.pc-product-main .product-meta span {
  color: #475569 !important;
  font-size: 13px !important;
  line-height: 1.45 !important;
}

.pc-product-main .product-category {
  display: inline-flex;
  margin-left: 4px;
  padding: 3px 8px;
  border-radius: 8px;
  color: #166534 !important;
  background: #dcfce7;
  font-weight: 780;
}

.pc-product-main .product-divider {
  border-color: rgba(15, 23, 42, .08) !important;
}

.pc-product-main .new_price_system {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 0 12px;
  padding: 14px 16px;
  border: 1px solid rgba(37, 99, 235, .12);
  border-radius: 8px;
  background: linear-gradient(180deg, #eff6ff, #ffffff);
  box-shadow: 0 16px 34px rgba(37, 99, 235, .07);
}

.pc-product-main .new_price_system .old-price {
  color: #94a3b8 !important;
  font-size: 18px !important;
  font-weight: 560 !important;
}

.pc-product-main .new_price_system .product-price {
  margin: 0 !important;
  font-size: 34px !important;
  line-height: 1.1 !important;
}

.pc-product-main .new_price_system .new-price {
  color: #1d4ed8 !important;
  font-size: 34px !important;
  font-weight: 820 !important;
  text-decoration: none !important;
}

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

.pc-product-main .product-short-desc ul {
  display: grid;
  gap: 8px;
  margin: 0 !important;
  padding: 0 !important;
}

.pc-product-main .product-short-desc li,
.pc-product-main .product-short-desc p,
.pc-product-main .product-short-desc div {
  color: #475569;
  font-size: 14px;
  line-height: 1.65;
}

.pc-product-main #sepete_ekle_durum + br {
  display: none;
}

.pc-product-main .product-sticky-content {
  position: static !important;
  margin: 22px 0 18px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.pc-product-main .product-sticky-content .product-form {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 14px !important;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 8px;
  background: #f8fafc;
  box-shadow: 0 16px 34px rgba(15, 23, 42, .05);
}

.pc-product-main .product-qty-form {
  flex: 0 0 132px;
}

.pc-product-main .quantity {
  min-height: 48px;
  border-color: rgba(15, 23, 42, .12) !important;
  border-radius: 8px !important;
  color: #0f172a !important;
  background: #ffffff !important;
  font-weight: 720;
}

.pc-product-main .btn-cart {
  flex: 1;
  min-height: 50px;
  border: 0 !important;
  border-radius: 8px !important;
  color: #ffffff !important;
  background: linear-gradient(135deg, #2563eb, #1d4ed8) !important;
  box-shadow: 0 18px 38px rgba(37, 99, 235, .26);
  font-weight: 780 !important;
}

.pc-product-main .btn-cart:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 44px rgba(37, 99, 235, .32);
}

.pc-product-main .social-links-wrapper {
  margin-top: 14px !important;
  padding-top: 18px !important;
  border-top: 1px solid rgba(15, 23, 42, .08) !important;
}

.pc-product-main .social-icons .social-icon,
.pc-product-main .product-link-wrapper .btn-product-icon {
  width: 40px !important;
  height: 40px !important;
  border-radius: 8px !important;
  color: #0f172a !important;
  background: #ffffff !important;
  box-shadow: 0 12px 26px rgba(15, 23, 42, .07);
}

.pc-product-main .social-icons .social-icon:hover,
.pc-product-main .product-link-wrapper .btn-product-icon:hover {
  color: #ffffff !important;
  background: #2563eb !important;
}

.pc-product-tabs {
  box-shadow: 0 28px 70px rgba(15, 23, 42, .09) !important;
}

.pc-product-tabs .nav-link {
  font-weight: 680 !important;
}

.pc-product-tabs .nav-link.active:after {
  background: linear-gradient(90deg, #2563eb, #16a34a) !important;
}

@media (max-width: 991px) {
  .pc-product-main .main-content > .product-single {
    padding: 18px;
  }

  .pc-product-main .product-single > .col-md-6:last-child > .product-details {
    padding: 20px 0 0 !important;
  }

  .pc-product-main .product-title {
    font-size: 34px !important;
  }
}

@media (max-width: 575px) {
  .pc-product-main .main-content > .product-single {
    padding: 12px;
  }

  .pc-product-main .product-title {
    font-size: 28px !important;
  }

  .pc-product-main .product-sticky-content .product-form {
    align-items: stretch;
    flex-direction: column;
  }

  .pc-product-main .product-qty-form {
    flex: 0 0 auto;
    width: 100%;
  }
}

/* Premium cart and checkout flow */
.main.cart {
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fafc 52%, #ffffff 100%);
  padding-bottom: 70px;
}

.main.cart .breadcrumb-nav {
  border-top: 1px solid rgba(15, 23, 42, .06) !important;
  background: #ffffff;
}

.shop-breadcrumb {
  display: flex !important;
  justify-content: center;
  gap: 12px;
  padding: 22px 0 !important;
  border: 0 !important;
}

.shop-breadcrumb li {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 8px;
  color: #64748b !important;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .04);
}

.shop-breadcrumb li.active {
  color: #1d4ed8 !important;
  border-color: rgba(37, 99, 235, .18);
  background: #eff6ff;
}

.shop-breadcrumb li a {
  color: inherit !important;
  font-size: 13px !important;
  font-weight: 750 !important;
}

.cart .page-content {
  padding-top: 28px !important;
}

.cart .cart-table {
  border: 1px solid rgba(15, 23, 42, .08) !important;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(15, 23, 42, .07);
  overflow: hidden;
  border-collapse: separate !important;
  border-spacing: 0 !important;
}

.cart .cart-table thead {
  background: linear-gradient(180deg, #ffffff, #f8fafc);
}

.cart .cart-table th {
  padding: 18px 16px !important;
  border-bottom: 1px solid rgba(15, 23, 42, .08) !important;
  color: #475569 !important;
  font-size: 12px !important;
  line-height: 1.25 !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
  text-transform: uppercase;
}

.cart .cart-table td {
  padding: 18px 16px !important;
  border-bottom: 1px solid rgba(15, 23, 42, .06) !important;
  color: #334155 !important;
  vertical-align: middle !important;
}

.cart .cart-table tbody tr {
  transition: background .18s ease;
}

.cart .cart-table tbody tr:hover {
  background: #f8fafc;
}

.cart .product-thumbnail figure {
  width: 92px;
  height: 92px;
  margin: 0;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 8px;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 12px 26px rgba(15, 23, 42, .06);
}

.cart .product-thumbnail img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.cart .btn-close {
  top: -8px !important;
  right: -8px !important;
  width: 28px !important;
  height: 28px !important;
  border-radius: 8px !important;
  color: #ffffff !important;
  background: #ef4444 !important;
  box-shadow: 0 10px 20px rgba(239, 68, 68, .24);
}

.cart .cart-table .product-name a {
  color: #0f172a !important;
  font-size: 15px !important;
  line-height: 1.45 !important;
  font-weight: 650 !important;
}

.cart .cart-table .product-name a div {
  display: inline-flex;
  margin: 6px 6px 0 0;
  padding: 4px 8px;
  border-radius: 8px;
  color: #475569;
  background: #f1f5f9;
  font-size: 12px;
  font-weight: 600;
}

.cart .cart-table .amount,
.cart .cart-table .product-price,
.cart .cart-table .product-subtotal {
  color: #1d4ed8 !important;
  font-weight: 780 !important;
}

.cart .product-quantity .input-group {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 8px;
  background: #f8fafc;
}

.cart .product-quantity strong {
  color: #0f172a;
  font-size: 13px;
  font-weight: 740;
}

.cart-action {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, .05);
}

.cart-action .btn,
.cart .btn-shopping,
.cart .btn-update,
.basket-summary .btn,
.basket-square .btn {
  min-height: 44px;
  border-radius: 8px !important;
  font-size: 13px !important;
  font-weight: 760 !important;
}

.cart-action .btn-shopping,
.cart .btn-dark:not(.btn-outline),
.basket-summary .btn-checkout {
  border: 0 !important;
  color: #ffffff !important;
  background: #0f172a !important;
  box-shadow: 0 16px 32px rgba(15, 23, 42, .16);
}

.cart-action .btn-update,
.basket-summary .kpn {
  border: 1px solid rgba(15, 23, 42, .12) !important;
  color: #0f172a !important;
  background: #ffffff !important;
}

.cart-action .btn:hover,
.basket-summary .btn:hover,
.basket-square .btn:hover {
  transform: translateY(-1px);
}

.cart .row.mb-5 .d-flex {
  gap: 14px;
  padding: 18px 20px !important;
  border: 1px solid rgba(37, 99, 235, .12) !important;
  border-radius: 8px !important;
  background: linear-gradient(135deg, #eff6ff, #ffffff);
  box-shadow: 0 16px 38px rgba(37, 99, 235, .06);
}

.cart .row.mb-5 .d-flex > div:first-child {
  color: #0f172a !important;
  font-family: Inter, "Segoe UI", Arial, sans-serif !important;
  font-size: 15px !important;
  line-height: 1.45 !important;
  font-weight: 720 !important;
}

.cart #orderForm {
  margin-top: 26px;
}

.basket-square,
.basket-summary {
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(15, 23, 42, .07);
}

.basket-square {
  padding: 26px;
}

.basket-summary {
  position: sticky;
  top: 18px;
  padding: 24px;
}

.basket-square h3,
.basket-summary h3 {
  position: relative;
  margin: 0 0 22px;
  padding-bottom: 14px;
  color: #0f172a;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 760;
}

.basket-square h3:after,
.basket-summary h3:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 52px;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, #2563eb, #16a34a);
}

.basket-square .form-group {
  margin-bottom: 16px;
}

.basket-square label,
.basket-summary label {
  display: block;
  margin-bottom: 7px;
  color: #475569;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 760;
}

.basket-square .form-control,
.basket-summary .form-control,
.basket-square select,
.basket-summary select,
.basket-square textarea {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(15, 23, 42, .12) !important;
  border-radius: 8px !important;
  color: #0f172a !important;
  background: #ffffff !important;
  font-size: 14px !important;
  font-weight: 520 !important;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .04);
}

.basket-square textarea {
  min-height: 92px;
  padding-top: 12px;
}

.basket-square .form-control:focus,
.basket-summary .form-control:focus,
.basket-square select:focus,
.basket-square textarea:focus {
  border-color: rgba(37, 99, 235, .44) !important;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, .1);
}

.orders-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(15, 23, 42, .07);
}

.orders-summary .sum-left,
.orders-summary .sum-right {
  color: #475569;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 620;
}

.orders-summary.bott {
  margin-top: 8px;
  padding: 16px;
  border: 1px solid rgba(37, 99, 235, .12);
  border-radius: 8px;
  background: #eff6ff;
}

.orders-summary.bott .sum-left {
  color: #0f172a;
  font-weight: 800;
}

.orders-summary .sum-total {
  color: #1d4ed8;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 820;
}

.coupon-title {
  margin: 22px 0 10px !important;
  color: #0f172a !important;
  font-size: 14px !important;
  line-height: 1.3 !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.basket-summary .sozl {
  margin-top: 18px;
  color: #64748b;
  font-size: 12px;
  line-height: 1.65;
}

.basket-summary .sozl a {
  color: #1d4ed8 !important;
  font-weight: 720;
}

.basket-summary #approve {
  width: 16px;
  height: 16px;
  margin-right: 7px;
  accent-color: #2563eb;
}

.basket-summary .btn-checkout {
  min-height: 50px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8) !important;
  box-shadow: 0 18px 38px rgba(37, 99, 235, .26);
}

.basket-summary .btn-checkout:disabled {
  opacity: .55;
  cursor: not-allowed;
  filter: grayscale(.2);
}

.cart .page-content h3:only-child,
.cart .cart-table h3 {
  color: #0f172a;
  font-size: 22px;
  font-weight: 760;
}

@media (max-width: 991px) {
  .basket-summary {
    position: static;
    margin-top: 22px;
  }

  .cart .row.mb-5 .d-flex {
    align-items: flex-start !important;
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .cart .cart-table {
    display: block;
    overflow-x: auto;
  }

  .shop-breadcrumb {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .basket-square {
    padding: 18px;
  }

  .basket-summary {
    padding: 18px;
  }
}

/* Premium support, auth and account pages */
.page-header {
  position: relative;
  min-height: 176px;
  display: flex;
  align-items: center;
  margin: 0 !important;
  border-top: 1px solid rgba(15, 23, 42, .06);
  background:
    linear-gradient(135deg, rgba(239, 246, 255, .96) 0%, rgba(255, 255, 255, .98) 46%, rgba(240, 253, 244, .9) 120%) !important;
  overflow: hidden;
}

.page-header:before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(15, 23, 42, .1), transparent);
}

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

.page-title {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  margin: 0 !important;
  padding-bottom: 14px;
  color: #0f172a !important;
  font-size: 38px !important;
  line-height: 1.1 !important;
  font-weight: 760 !important;
  letter-spacing: 0 !important;
}

.page-title:after,
.wishlist-title:after,
.contact-us .title-center:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 64px;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, #2563eb, #16a34a);
}

.page-content:not(.pc-shop-page) {
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fafc 60%, #ffffff 100%);
}

.main:not(.cart):not(.pc-product-main):not(.pc-shop-main) .page-content {
  padding-bottom: 72px !important;
}

.login-popup,
.account-details-form,
.bg2.border.p20,
.show-code-action,
.contact-information-section .icon-box,
.wishlist-table,
.wishlist-page .alert,
.contact-section .row {
  border: 1px solid rgba(15, 23, 42, .08) !important;
  border-radius: 8px !important;
  background: #ffffff !important;
  box-shadow: 0 24px 60px rgba(15, 23, 42, .07) !important;
}

.login-popup {
  max-width: 760px !important;
  padding: 0 !important;
  overflow: hidden;
}

.login-popup,
.login-popup * {
  box-sizing: border-box;
}

.page-content > .row.mt-20,
.page-content > .row.mb-20 {
  width: 100%;
  max-width: 100%;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

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

.login-popup .nav-item {
  margin: 0 !important;
}

.login-popup .nav-link {
  position: relative;
  min-height: 68px;
  display: inline-flex !important;
  align-items: center;
  margin: 0 !important;
  padding: 0 24px !important;
  border: 0 !important;
  color: #64748b !important;
  background: transparent !important;
  font-size: 15px !important;
  line-height: 1.2 !important;
  font-weight: 720 !important;
  text-transform: none !important;
}

.login-popup .nav-link:after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 3px;
  border-radius: 99px 99px 0 0;
  background: transparent;
}

.login-popup .nav-link.active,
.login-popup .nav-link:hover {
  color: #0f172a !important;
}

.login-popup .nav-link.active:after {
  background: linear-gradient(90deg, #2563eb, #16a34a);
}

.login-popup .tab-content {
  padding: 30px !important;
  border: 0 !important;
}

.login-popup form,
.account-details-form,
.show-code-action form {
  display: grid;
  gap: 16px;
}

.login-popup .form-group,
.account-details-form .form-group,
.show-code-action .form-group {
  margin-bottom: 0 !important;
}

.login-popup label,
.account-details-form label,
.show-code-action label,
.contact-us label {
  margin-bottom: 7px !important;
  color: #475569 !important;
  font-size: 12px !important;
  line-height: 1.2 !important;
  font-weight: 760 !important;
}

.login-popup .form-control,
.account-details-form .form-control,
.show-code-action .form-control,
.contact-us .form-control,
.wishlist-page .form-control {
  min-height: 48px;
  padding: 0 14px !important;
  border: 1px solid rgba(15, 23, 42, .12) !important;
  border-radius: 8px !important;
  color: #0f172a !important;
  background: #ffffff !important;
  font-size: 14px !important;
  font-weight: 520 !important;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .04);
}

.login-popup textarea.form-control,
.account-details-form textarea.form-control,
.show-code-action textarea.form-control {
  min-height: 98px;
  padding-top: 12px !important;
}

.login-popup .form-control:focus,
.account-details-form .form-control:focus,
.show-code-action .form-control:focus,
.contact-us .form-control:focus {
  border-color: rgba(37, 99, 235, .44) !important;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, .1);
}

.login-popup .form-checkbox {
  gap: 10px;
  margin: 4px 0 0 !important;
  color: #64748b;
  font-size: 13px;
}

.login-popup .custom-checkbox,
.account-details-form input[type="checkbox"] {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  accent-color: #2563eb;
}

.login-popup .btn,
.account-details-form .btn,
.show-code-action .btn,
.wishlist-action .btn {
  min-height: 48px;
  border: 0 !important;
  border-radius: 8px !important;
  color: #ffffff !important;
  background: linear-gradient(135deg, #2563eb, #1d4ed8) !important;
  box-shadow: 0 18px 38px rgba(37, 99, 235, .24);
  font-size: 14px !important;
  font-weight: 780 !important;
}

.login-popup .btn:hover,
.account-details-form .btn:hover,
.show-code-action .btn:hover,
.wishlist-action .btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 44px rgba(37, 99, 235, .3);
}

.alert,
.basari,
.hata {
  border-radius: 8px !important;
  font-family: Inter, "Segoe UI", Arial, sans-serif !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
  box-shadow: 0 14px 34px rgba(15, 23, 42, .06);
}

.alert-success,
.basari {
  border-color: rgba(22, 163, 74, .18) !important;
  color: #166534 !important;
  background: #f0fdf4 !important;
}

.alert-danger,
.alert-error,
.hata {
  border-color: rgba(239, 68, 68, .18) !important;
  color: #991b1b !important;
  background: #fef2f2 !important;
}

.wishlist-title,
.contact-us .title-center,
.bg2.border.p20 h2 {
  position: relative;
  display: inline-flex;
  margin: 0 0 24px !important;
  padding-bottom: 12px;
  color: #0f172a !important;
  font-size: 28px !important;
  line-height: 1.2 !important;
  font-weight: 760 !important;
}

.contact-us .content-title-section {
  margin-bottom: 34px !important;
}

.contact-us .content-title-section p {
  max-width: 720px;
  margin: 0 auto;
  color: #64748b;
  font-size: 15px;
  line-height: 1.7;
}

.contact-information-section .swiper-wrapper {
  row-gap: 18px;
}

.contact-information-section .icon-box {
  min-height: 190px;
  padding: 28px 20px !important;
  transition: transform .22s cubic-bezier(.2, .8, .2, 1), box-shadow .22s ease;
}

.contact-information-section .icon-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(15, 23, 42, .1) !important;
}

.contact-information-section .icon-box-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 18px !important;
  border-radius: 8px;
  color: #1d4ed8 !important;
  background: #eff6ff;
}

.contact-information-section .icon-box-title {
  color: #0f172a !important;
  font-size: 16px !important;
  font-weight: 740 !important;
}

.contact-information-section p {
  color: #64748b !important;
  font-size: 13px !important;
  line-height: 1.55 !important;
}

.contact-section .row {
  min-height: 320px;
  padding: 12px;
  overflow: hidden;
}

.contact-section iframe {
  width: 100% !important;
  min-height: 320px;
  border: 0 !important;
  border-radius: 8px;
}

.show-code-action {
  width: 100%;
  padding: 30px !important;
  overflow: hidden;
}

.show-code-action .banner-content {
  max-width: 760px;
  margin: 0 auto 20px;
}

.show-code-action .banner-title {
  color: #0f172a !important;
  font-size: 30px !important;
  line-height: 1.15 !important;
  font-weight: 760 !important;
  text-transform: none !important;
}

.show-code-action .banner-title img {
  display: none !important;
}

.show-code-action .banner-title:before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-right: 10px;
  border-radius: 8px;
  color: #1d4ed8;
  background: #eff6ff;
  font-size: 18px;
  vertical-align: middle;
}

.show-code-action p {
  color: #64748b;
  font-size: 15px;
  line-height: 1.7;
}

.show-code-action .col-md-12 {
  max-width: 620px;
  margin: 0 auto;
}

.show-code-action input,
.show-code-action select {
  margin-bottom: 12px;
}

.wishlist-table {
  border-collapse: separate !important;
  border-spacing: 0 !important;
  overflow: hidden;
}

.wishlist-table th {
  padding: 18px 16px !important;
  border-bottom: 1px solid rgba(15, 23, 42, .08) !important;
  color: #475569 !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  text-transform: uppercase;
}

.wishlist-table td {
  padding: 18px 16px !important;
  border-bottom: 1px solid rgba(15, 23, 42, .06) !important;
  vertical-align: middle !important;
}

.wishlist-table .product-thumbnail figure {
  width: 92px;
  height: 92px;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 8px;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 12px 26px rgba(15, 23, 42, .06);
}

.wishlist-table .product-thumbnail img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.wishlist-table .product-name a {
  color: #0f172a !important;
  font-size: 15px !important;
  font-weight: 650 !important;
}

.wishlist-table .new-price {
  color: #1d4ed8 !important;
  font-size: 16px !important;
  font-weight: 780 !important;
  text-decoration: none !important;
}

.wishlist-in-stock {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 5px 10px;
  border-radius: 8px;
  color: #166534 !important;
  background: #dcfce7;
  font-size: 12px;
  font-weight: 760;
}

.bg2.border.p20 {
  float: none !important;
  padding: 28px !important;
}

@media (max-width: 767px) {
  .page-header {
    min-height: 138px;
  }

  .page-title {
    font-size: 30px !important;
  }

  .login-popup .tab-content,
  .show-code-action,
  .bg2.border.p20 {
    padding: 20px !important;
  }

  .login-popup .nav-tabs {
    padding: 0 10px !important;
    overflow-x: auto;
  }

  .login-popup .nav-link {
    padding: 0 16px !important;
    white-space: nowrap;
  }
}

/* Mobile premium refinement */
@media (max-width: 767px) {
  body {
    padding-bottom: 64px;
  }

  .header-top {
    min-height: 44px;
  }

  .header-top .container {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    align-items: center;
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  .header-top .welcome-msg {
    max-width: 160px;
    overflow: hidden;
    color: rgba(255, 255, 255, .82) !important;
    font-size: 10px !important;
    line-height: 1.25 !important;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .header-top .header-right {
    display: flex !important;
    gap: 6px;
    align-items: center;
    justify-content: flex-end;
  }

  .header-top .dropdown > a {
    min-height: 34px;
    padding: 5px 9px !important;
    border-radius: 8px !important;
    font-size: 10px !important;
    line-height: 1.1 !important;
  }

  .header-top .dropdown-box {
    top: 42px !important;
    right: 0 !important;
    left: auto !important;
    min-width: 132px !important;
  }

  .header-middle {
    min-height: 112px;
  }

  .header-middle .container {
    min-height: 112px;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .header .logo img {
    max-width: 148px !important;
  }

  .sticky-footer {
    border-top: 1px solid rgba(15, 23, 42, .08);
    background: rgba(255, 255, 255, .94) !important;
    box-shadow: 0 -16px 34px rgba(15, 23, 42, .1);
    backdrop-filter: blur(14px);
  }

  .sticky-footer .sticky-link {
    color: #475569 !important;
    font-size: 11px !important;
  }

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

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

  .intro-section .banner:before {
    background:
      linear-gradient(90deg, rgba(248,250,252,.98), rgba(248,250,252,.72) 52%, rgba(248,250,252,.12) 100%),
      linear-gradient(180deg, rgba(255,255,255,.18), rgba(37,99,235,.06)) !important;
  }

  .intro-section .banner-content {
    max-width: 100% !important;
    margin-left: 0 !important;
    padding: 34px 16px 92px !important;
  }

  .intro-section .banner-subtitle {
    min-height: 34px;
    max-width: 100%;
    margin-bottom: 14px !important;
    padding: 7px 11px !important;
    font-size: 12px !important;
    white-space: normal;
  }

  .intro-section .banner-title {
    max-width: 360px;
    margin-bottom: 18px !important;
    font-size: 42px !important;
    line-height: 1.08 !important;
  }

  .intro-section p {
    max-width: 330px;
    margin-bottom: 22px !important;
    font-size: 18px !important;
    line-height: 1.45 !important;
  }

  .intro-section .btn {
    min-width: 178px;
    min-height: 48px;
  }

  .intro-section .swiper-pagination {
    bottom: 32px !important;
  }

  .icon-box-wrapper {
    margin: 18px 14px 0;
  }

  .category-ellipse-section {
    padding-top: 14px;
  }

  .category-ellipse-section .swiper-container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .category-ellipse-section .category {
    min-width: 118px !important;
    max-width: 118px !important;
    padding: 12px 10px;
  }

  .category-ellipse-section .category-media img {
    width: 68px !important;
    height: 68px !important;
  }

  .category-name {
    font-size: 12px !important;
  }

  .category-banner-wrapper {
    padding-left: 14px;
    padding-right: 14px;
  }

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

  .category-banner-wrapper .banner-content {
    padding: 20px !important;
  }

  .category-banner-wrapper .banner-title {
    font-size: 28px !important;
    line-height: 1.08 !important;
  }

  .title-link-wrapper {
    margin-left: 6px;
    margin-right: 6px;
  }

  .title-link-wrapper .title {
    font-size: 22px !important;
  }

  .product-wrap {
    padding: 6px;
  }

  .product {
    border-radius: 8px !important;
  }

  .product-details {
    min-height: 118px;
  }

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

  .pc-shop-heading {
    margin: 0 0 18px;
    padding: 18px;
  }

  .pc-shop-heading h1 {
    font-size: 28px !important;
  }

  .pc-shop-stats {
    min-width: 0;
    padding: 14px;
    text-align: left;
  }

  .pc-shop-main .shop-sidebar {
    display: none !important;
    position: static !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    width: 100% !important;
    max-width: none !important;
    margin-bottom: 18px;
    padding-right: 0;
    transform: none !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .pc-shop-main .sidebar-overlay,
  .pc-shop-main .sidebar-close {
    display: none !important;
  }

  .pc-shop-main .sidebar-content,
  .pc-shop-main .sticky-sidebar {
    position: static !important;
    width: 100% !important;
    max-height: none !important;
    overflow: visible !important;
    transform: none !important;
  }

  .pc-shop-filter-panel,
  .pc-shop-menu {
    padding: 16px !important;
  }

  .pc-shop-filter-panel {
    margin-top: 0 !important;
    background: linear-gradient(180deg, #ffffff, #eef5ff) !important;
    border-color: rgba(37, 99, 235, .18) !important;
    box-shadow: 0 22px 54px rgba(37, 99, 235, .12) !important;
  }

  .pc-shop-filter-form {
    gap: 10px;
  }

  .pc-filter-meta {
    margin-bottom: 12px;
  }

  .pc-price-presets {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
  }

  .pc-price-presets a {
    min-height: 40px;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    text-align: center;
  }

  .pc-price-presets a:after {
    display: none;
  }

  .pc-shop-filter-form label > span {
    font-size: 11px;
  }

  .pc-shop-filter-form input,
  .pc-shop-filter-form select {
    min-height: 40px;
  }

  .pc-shop-menu {
    display: none !important;
  }

  .pc-mobile-filter-inline {
    display: block;
    margin: 0 0 18px;
    padding: 16px;
    border: 1px solid rgba(37, 99, 235, .18);
    border-radius: 8px;
    background: linear-gradient(180deg, #ffffff, #eef5ff);
    box-shadow: 0 22px 54px rgba(37, 99, 235, .12);
  }

  .pc-shop-hero {
    min-height: 250px !important;
    margin-bottom: 18px !important;
    background-position: center right !important;
  }

  .pc-shop-hero:before {
    background:
      linear-gradient(90deg, rgba(15, 23, 42, .72), rgba(15, 23, 42, .32) 62%, rgba(15, 23, 42, .08)) !important;
  }

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

  .pc-shop-toolbar {
    padding: 14px;
  }

  .pc-shop-filter-panel.pc-reveal,
  .pc-shop-hero.pc-reveal,
  .pc-shop-toolbar.pc-reveal,
  .pc-shop-heading.pc-reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  .pc-shop-products {
    margin-left: -6px !important;
    margin-right: -6px !important;
  }

  .pc-shop-product-card .product-name a {
    font-size: 13px !important;
  }

  .pc-product-main .breadcrumb-nav {
    padding-left: 14px;
    padding-right: 14px;
  }

  .pc-product-main .product-nav {
    display: none !important;
  }

  .pc-product-main .main-content > .product-single {
    margin-left: -10px;
    margin-right: -10px;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    box-shadow: none !important;
  }

  .pc-product-main .product-gallery {
    padding: 10px;
  }

  .pc-product-main .product-image {
    aspect-ratio: 1 / 1;
  }

  .pc-product-main .product-thumb img,
  .pc-product-main .product-thumb video {
    height: 68px !important;
  }

  .pc-product-main .product-title {
    margin-top: 4px !important;
    font-size: 30px !important;
  }

  .pc-product-main .product-bm-wrapper {
    flex-direction: column;
  }

  .pc-product-main .brand {
    justify-content: flex-start;
    width: 100%;
  }

  .pc-product-main .new_price_system {
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .pc-product-main .new_price_system .new-price,
  .pc-product-main .new_price_system .product-price {
    font-size: 28px !important;
  }

  .pc-product-tabs .nav-link {
    min-height: 56px;
    font-size: 14px !important;
  }

  .footer-newsletter {
    padding-bottom: 86px !important;
  }
}

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

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

  .header-top .welcome-msg {
    max-width: 142px;
  }

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

/* Premium motion and typography finishing layer */
:root {
  --pc-ease: cubic-bezier(.2, .8, .2, 1);
  --pc-blue: #2563eb;
  --pc-green: #16a34a;
  --pc-ink: #0f172a;
  --pc-muted: #64748b;
  --pc-line: rgba(15, 23, 42, .08);
}

.ls-normal,
.ls-25,
.ls-10,
.text-uppercase {
  letter-spacing: 0 !important;
}

.title-link-wrapper {
  position: relative;
  align-items: center;
  padding: 18px 0 12px;
}

.title-link-wrapper:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 84px;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--pc-blue), var(--pc-green));
}

.title-link-wrapper:after {
  content: "";
  position: absolute;
  left: 96px;
  bottom: 1px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pc-green);
  box-shadow: 0 0 0 7px rgba(22, 163, 74, .1);
}

.title-link-wrapper .title {
  color: var(--pc-ink) !important;
  font-size: 30px !important;
  line-height: 1.15 !important;
  font-weight: 740 !important;
  letter-spacing: 0 !important;
}

.title-link-wrapper .btn,
.title-link-wrapper a:not(.title) {
  min-height: 38px;
  align-items: center;
  padding: 0 14px !important;
  border: 1px solid rgba(37, 99, 235, .14);
  border-radius: 8px;
  color: #1d4ed8 !important;
  background: #eff6ff;
  font-size: 13px !important;
  font-weight: 720 !important;
  transition: transform .18s var(--pc-ease), background .18s ease, border-color .18s ease;
}

.title-link-wrapper .btn:hover,
.title-link-wrapper a:not(.title):hover {
  transform: translateY(-1px);
  border-color: rgba(37, 99, 235, .28);
  background: #ffffff;
}

.product,
.pc-shop-product-card,
.swiper-slide.product {
  isolation: isolate;
}

.product-media {
  background:
    linear-gradient(145deg, #ffffff, #f8fafc) !important;
}

.product-media:after {
  content: "";
  position: absolute;
  inset: auto 16px 0;
  height: 18%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(15, 23, 42, .11), transparent 68%);
  opacity: 0;
  transform: translateY(10px) scale(.9);
  transition: opacity .24s ease, transform .24s var(--pc-ease);
  pointer-events: none;
  z-index: 0;
}

.product:hover .product-media:after,
.pc-shop-product-card:hover .product-media:after {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.product-media img {
  position: relative;
  z-index: 1;
}

.product-name,
.pc-shop-product-card .product-name {
  min-height: 40px !important;
}

.product-name a,
.pc-shop-product-card .product-name a {
  display: -webkit-box;
  overflow: hidden;
  color: var(--pc-ink) !important;
  font-size: 14px !important;
  line-height: 1.45 !important;
  font-weight: 590 !important;
  letter-spacing: 0 !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color .18s ease;
}

.product:hover .product-name a,
.pc-shop-product-card:hover .product-name a {
  color: #1d4ed8 !important;
}

.product-cat a,
.pc-shop-product-card .product-cat a {
  display: inline-flex;
  width: fit-content;
  min-height: 24px;
  align-items: center;
  padding: 4px 8px;
  border-radius: 8px;
  color: #475569 !important;
  background: #f8fafc;
  font-size: 10px !important;
  line-height: 1.1 !important;
  font-weight: 760 !important;
  text-transform: uppercase;
}

.product-price,
.pc-shop-product-card .product-price {
  margin-top: 2px;
  font-variant-numeric: tabular-nums;
}

.product-price ins,
.pc-shop-product-card .product-price ins,
.product-price .new-price {
  color: #1d4ed8 !important;
  font-size: 17px !important;
  font-weight: 740 !important;
}

.ratings-full {
  filter: saturate(1.08);
}

.product-action-horizontal {
  border: 1px solid rgba(15, 23, 42, .08);
  background: rgba(255, 255, 255, .92) !important;
  backdrop-filter: blur(12px);
  transform: translateY(12px) scale(.98);
  transition: opacity .22s ease, transform .22s var(--pc-ease), box-shadow .22s ease;
}

.product:hover .product-action-horizontal,
.pc-shop-product-card:hover .product-action-horizontal {
  transform: translateY(0) scale(1);
}

.btn-product-icon {
  transition: color .18s ease, background .18s ease, transform .18s var(--pc-ease) !important;
}

.btn-product-icon:hover {
  transform: translateY(-1px);
  color: #ffffff !important;
  background: linear-gradient(135deg, var(--pc-blue), #1d4ed8) !important;
}

.swiper-button-next,
.swiper-button-prev {
  width: 44px !important;
  height: 44px !important;
  border: 1px solid rgba(15, 23, 42, .08) !important;
  border-radius: 8px !important;
  color: var(--pc-ink) !important;
  background: rgba(255, 255, 255, .92) !important;
  box-shadow: 0 18px 38px rgba(15, 23, 42, .12);
  backdrop-filter: blur(12px);
  transition: transform .18s var(--pc-ease), background .18s ease, color .18s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  transform: translateY(-2px);
  color: #ffffff !important;
  background: #0f172a !important;
}

.swiper-pagination-bullet {
  width: 8px !important;
  height: 8px !important;
  border-radius: 99px !important;
  background: rgba(15, 23, 42, .28) !important;
  opacity: 1 !important;
  transition: width .2s var(--pc-ease), background .2s ease;
}

.swiper-pagination-bullet-active {
  width: 26px !important;
  background: linear-gradient(90deg, var(--pc-blue), var(--pc-green)) !important;
}

.icon-box-wrapper {
  border: 1px solid var(--pc-line);
  background: rgba(255, 255, 255, .92) !important;
  box-shadow: 0 20px 54px rgba(15, 23, 42, .07);
  backdrop-filter: blur(12px);
}

.icon-box-wrapper .icon-box {
  transition: transform .2s var(--pc-ease), background .2s ease;
}

.icon-box-wrapper .icon-box:hover {
  transform: translateY(-3px);
  background: #f8fafc;
}

.category-ellipse-section .category {
  position: relative;
  overflow: hidden;
}

.category-ellipse-section .category:after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(37, 99, 235, .12);
  border-radius: 8px;
  opacity: 0;
  transform: scale(.96);
  transition: opacity .2s ease, transform .2s var(--pc-ease);
  pointer-events: none;
}

.category-ellipse-section .category:hover:after {
  opacity: 1;
  transform: scale(1);
}

.category-banner-wrapper .banner {
  transition: transform .24s var(--pc-ease), box-shadow .24s ease;
}

.category-banner-wrapper .banner:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 68px rgba(15, 23, 42, .12);
}

.pc-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity .58s var(--pc-ease),
    transform .58s var(--pc-ease),
    box-shadow .22s ease,
    border-color .22s ease;
}

.pc-reveal.pc-reveal-in {
  opacity: 1;
  transform: translateY(0);
}

.product-wrap.pc-reveal:nth-child(2n),
.category-ellipse-section .category.pc-reveal:nth-child(2n) {
  transition-delay: .04s;
}

.product-wrap.pc-reveal:nth-child(3n),
.category-ellipse-section .category.pc-reveal:nth-child(3n) {
  transition-delay: .08s;
}

.product-wrap.pc-reveal:nth-child(4n),
.category-ellipse-section .category.pc-reveal:nth-child(4n) {
  transition-delay: .12s;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .pc-reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 575px) {
  .title-link-wrapper {
    padding-top: 12px;
  }

  .title-link-wrapper .title {
    font-size: 22px !important;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 38px !important;
    height: 38px !important;
  }
}

/* Editorial premium finishing layer */
.main {
  background:
    linear-gradient(180deg, rgba(248, 250, 252, .8), rgba(255, 255, 255, 0) 460px),
    #ffffff;
}

.title-link-wrapper {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end !important;
  gap: 8px 16px;
  min-height: 58px;
  padding: 18px 0 12px !important;
  border-bottom: 1px solid rgba(15, 23, 42, .06);
}

.title-link-wrapper:before {
  content: "Tatlı Patik seçkisi";
  position: static !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  bottom: auto !important;
  grid-column: 1 / -1;
  grid-row: 1;
  width: max-content;
  height: auto !important;
  max-width: 100%;
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 5px 10px;
  border: 1px solid rgba(37, 99, 235, .13);
  border-radius: 8px;
  color: #1d4ed8;
  background: #eff6ff;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 780;
}

.title-link-wrapper .title {
  grid-column: 1;
  grid-row: 2;
  display: flex !important;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  gap: 12px;
  color: #07111f !important;
  font-size: 30px !important;
  line-height: 1.12 !important;
  font-weight: 760 !important;
  letter-spacing: 0 !important;
}

.title-link-wrapper .title:before {
  content: "";
  width: 38px;
  height: 3px;
  flex: 0 0 38px;
  border-radius: 99px;
  background: linear-gradient(90deg, #1d4ed8, #16a34a, #f97316);
}

.title-link-wrapper .title:after {
  bottom: -13px !important;
  width: 100% !important;
  height: 2px !important;
  background: linear-gradient(90deg, rgba(37, 99, 235, .55), rgba(22, 163, 74, .28), transparent) !important;
}

.title-link-wrapper > a,
.title-link-wrapper > .btn {
  grid-column: 2;
  grid-row: 2;
  justify-self: end;
}

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

.product-wrapper:before,
.product-wrapper-1:before {
  content: "";
  position: absolute;
  inset: 26px -18px auto;
  height: 180px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(239, 246, 255, .72), rgba(240, 253, 244, .5), rgba(255, 247, 237, .44));
  opacity: .7;
  pointer-events: none;
  z-index: 0;
}

.product-wrapper > *,
.product-wrapper-1 > * {
  position: relative;
  z-index: 1;
}

.product {
  border: 1px solid rgba(15, 23, 42, .07) !important;
  border-radius: 8px !important;
  background: rgba(255, 255, 255, .96) !important;
  box-shadow: 0 16px 42px rgba(15, 23, 42, .055) !important;
  overflow: hidden;
  transform: translateY(0);
  transition:
    transform .28s var(--pc-ease),
    box-shadow .28s ease,
    border-color .28s ease,
    background .28s ease !important;
}

.product:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, .22) !important;
  background: #ffffff !important;
  box-shadow: 0 30px 76px rgba(15, 23, 42, .13) !important;
}

.product:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 18%, rgba(255, 255, 255, .62) 42%, transparent 64%);
  opacity: 0;
  transform: translateX(-120%);
  pointer-events: none;
  transition: opacity .28s ease, transform .7s var(--pc-ease);
}

.product:hover:before {
  opacity: .75;
  transform: translateX(120%);
}

.product .product-details {
  padding: 17px 16px 18px !important;
}

.product-name,
.pc-shop-product-card .product-name {
  min-height: 44px !important;
}

.product-name a,
.pc-shop-product-card .product-name a {
  color: #0b1220 !important;
  font-size: 14px !important;
  line-height: 1.46 !important;
  font-weight: 560 !important;
  text-wrap: balance;
}

.product:hover .product-name a,
.pc-shop-product-card:hover .product-name a {
  color: #1d4ed8 !important;
}

.product-price,
.pc-shop-product-card .product-price {
  color: #1d4ed8 !important;
  font-size: 17px !important;
  font-weight: 740 !important;
  letter-spacing: 0 !important;
}

.product-price del,
.pc-shop-product-card .product-price del {
  color: #94a3b8 !important;
  font-weight: 520 !important;
}

.product-media {
  aspect-ratio: 1 / .94;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
}

.product-media > a,
.product-media img {
  display: block;
  width: 100%;
  height: 100%;
}

.product-media img {
  object-fit: cover !important;
  transform: scale(1);
  transition:
    transform .42s var(--pc-ease),
    filter .34s ease !important;
}

.product:hover .product-media img {
  transform: scale(1.055);
  filter: saturate(1.07) contrast(1.03);
}

.product-action-vertical,
.product-action-horizontal {
  z-index: 4;
}

.product-action-vertical .btn-product-icon,
.product-action-horizontal .btn-product-icon {
  border-radius: 8px !important;
  box-shadow: 0 12px 24px rgba(15, 23, 42, .12);
}

.icon-box-wrapper {
  position: relative;
  overflow: hidden;
}

.icon-box-wrapper:before {
  content: "";
  position: absolute;
  inset: 0;
  height: 3px;
  background: linear-gradient(90deg, #1d4ed8, #16a34a, #f97316);
}

.icon-box-wrapper .icon-box-icon {
  transition: transform .24s var(--pc-ease), color .24s ease;
}

.icon-box-wrapper .icon-box:hover .icon-box-icon {
  transform: translateY(-2px) scale(1.05);
  color: #1d4ed8 !important;
}

.category-ellipse-section {
  padding: 8px 0 4px;
}

.category-ellipse-section .swiper-container {
  padding: 20px 18px !important;
  border: 1px solid rgba(15, 23, 42, .07);
  border-radius: 8px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 22px 54px rgba(15, 23, 42, .06);
}

.category-ellipse-section .category {
  border: 1px solid rgba(15, 23, 42, .06);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  box-shadow: 0 12px 28px rgba(15, 23, 42, .045);
  transition: transform .24s var(--pc-ease), box-shadow .24s ease, border-color .24s ease;
}

.category-ellipse-section .category:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, .2);
  box-shadow: 0 24px 52px rgba(15, 23, 42, .11);
}

.category-name a {
  color: #0f172a !important;
  font-size: 12px !important;
  font-weight: 720 !important;
  letter-spacing: 0 !important;
}

.banner-content .btn,
.btn {
  transition:
    transform .22s var(--pc-ease),
    box-shadow .22s ease,
    background .22s ease,
    color .22s ease,
    border-color .22s ease !important;
}

.banner-content .btn:hover,
.btn:hover {
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .title-link-wrapper .title {
    font-size: 25px !important;
  }

  .product-wrapper:before,
  .product-wrapper-1:before {
    left: 0;
    right: 0;
  }
}

@media (max-width: 575px) {
  .title-link-wrapper {
    grid-template-columns: 1fr;
  }

  .title-link-wrapper > a,
  .title-link-wrapper > .btn {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
  }

  .title-link-wrapper:before {
    font-size: 10px;
  }

  .title-link-wrapper .title {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    font-size: 22px !important;
  }

  .title-link-wrapper .title:before {
    width: 34px;
    height: 3px;
    flex: 0 0 auto;
  }

  .product .product-details {
    padding: 14px 12px 16px !important;
  }

  .product-name a,
  .pc-shop-product-card .product-name a {
    font-size: 13px !important;
  }

  .integration-fixed.integration-fixed__bottom-left,
  .integration-fixed__bottom-left,
  .integration-fixed,
  .whatsapp-container {
    left: 14px !important;
    bottom: 126px !important;
    width: 54px !important;
    height: 54px !important;
    transform: none !important;
  }

  .whatsapp-container a,
  .integration-fixed__bottom-left a {
    width: 48px !important;
    height: 48px !important;
  }
}

/* Premium startup transition */
.pc-page-loader {
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 18% 20%, rgba(37, 99, 235, .13), transparent 28%),
    radial-gradient(circle at 82% 76%, rgba(22, 163, 74, .12), transparent 28%),
    rgba(248, 250, 252, .94);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  backdrop-filter: blur(12px);
  transition: opacity .32s var(--pc-ease), visibility .32s ease;
}

body.pc-loading .pc-page-loader {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.pc-loader-card {
  display: grid;
  min-width: 260px;
  place-items: center;
  gap: 14px;
  padding: 28px 30px;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 8px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 30px 80px rgba(15, 23, 42, .12);
  animation: pcLoaderCardIn .45s var(--pc-ease) both;
}

.pc-loader-card img {
  width: 176px;
  max-width: 70vw;
  height: auto;
}

.pc-loader-card span {
  position: relative;
  color: #475569;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 720;
}

.pc-loader-card span:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  width: 72px;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--pc-blue), var(--pc-green));
  transform: translateX(-50%);
  animation: pcLoaderPulse 1.2s ease-in-out infinite;
}

@keyframes pcLoaderCardIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes pcLoaderPulse {
  0%,
  100% {
    opacity: .45;
    transform: translateX(-50%) scaleX(.72);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) scaleX(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .pc-page-loader,
  .pc-loader-card,
  .pc-loader-card span:after {
    animation: none !important;
    transition: none !important;
  }
}

/* Premium header command layer */
.header {
  position: relative;
  z-index: 1000;
  background: #ffffff;
}

.header-top {
  min-height: 44px;
  background:
    linear-gradient(90deg, #07111f 0%, #0f172a 46%, #10213b 100%) !important;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, .08);
}

.header-top .container {
  min-height: 44px;
}

.header-top .welcome-msg {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 !important;
  font-size: 12px !important;
  font-weight: 720;
  letter-spacing: 0 !important;
}

.header-top .welcome-msg:before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: #16a34a;
  box-shadow: 0 0 0 5px rgba(22, 163, 74, .13);
}

.header-top .header-right {
  gap: 8px;
}

.header-top .divider {
  height: 20px !important;
  margin: 0 8px !important;
  background: rgba(255, 255, 255, .18) !important;
}

.header-top .dropdown > a,
.header-top .header-right > a {
  min-height: 32px;
  padding: 6px 10px !important;
  border: 1px solid transparent;
  border-radius: 8px;
  color: rgba(255, 255, 255, .88) !important;
  font-size: 12px !important;
  line-height: 1.2 !important;
  font-weight: 700 !important;
  transition: transform .18s var(--pc-ease), background .18s ease, border-color .18s ease, color .18s ease;
}

.header-top .dropdown > a:hover,
.header-top .header-right > a:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .1) !important;
  color: #ffffff !important;
}

.header-top .dropdown-box {
  min-width: 152px !important;
  padding: 8px !important;
  border: 1px solid rgba(15, 23, 42, .08) !important;
  border-radius: 8px !important;
  background: rgba(255, 255, 255, .98) !important;
  box-shadow: 0 24px 60px rgba(15, 23, 42, .16) !important;
}

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

.header-top .dropdown-box a {
  justify-content: flex-start !important;
  min-height: 36px !important;
  padding: 8px 10px !important;
  border-radius: 8px !important;
  color: #0f172a !important;
  background: transparent !important;
}

.header-top .dropdown-box a:hover {
  color: #1d4ed8 !important;
  background: #eff6ff !important;
}

.header-middle {
  position: relative;
  min-height: 132px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(248, 250, 252, .92)) !important;
  box-shadow: 0 18px 44px rgba(15, 23, 42, .055) !important;
}

.header-middle:before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, .22), rgba(22, 163, 74, .22), transparent);
}

.header-middle .container {
  min-height: 132px;
}

.header .logo {
  display: inline-flex !important;
  align-items: center;
  min-height: 58px;
  padding: 6px 0;
}

.header .logo img {
  max-width: 178px !important;
  width: 178px !important;
  height: auto !important;
}

.header-search.hs-expanded {
  position: relative;
  max-width: 600px !important;
  min-height: 54px !important;
  margin-left: 42px !important;
  border: 1px solid rgba(37, 99, 235, .2) !important;
  border-radius: 8px !important;
  background: #ffffff !important;
  box-shadow: 0 18px 42px rgba(37, 99, 235, .09);
  overflow: hidden;
  transition: transform .2s var(--pc-ease), box-shadow .2s ease, border-color .2s ease;
}

.header-search.hs-expanded:before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(37, 99, 235, .06), transparent 38%, rgba(22, 163, 74, .06));
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}

.header-search.hs-expanded:focus-within {
  transform: translateY(-1px);
  border-color: rgba(37, 99, 235, .44) !important;
  box-shadow: 0 24px 56px rgba(37, 99, 235, .16);
}

.header-search.hs-expanded:focus-within:before {
  opacity: 1;
}

.header-search .select-box {
  min-width: 150px;
  border-right: 1px solid rgba(15, 23, 42, .08) !important;
  background: #f8fafc;
}

.header-search .select-box select,
.header-search .form-control {
  min-height: 54px !important;
  color: #0f172a !important;
  font-size: 13px !important;
  font-weight: 600 !important;
}

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

.header-search .btn-search {
  min-width: 56px !important;
  min-height: 54px !important;
  border-radius: 0 !important;
  color: #0f172a !important;
  background: transparent !important;
  transition: color .18s ease, background .18s ease;
}

.header-search .btn-search:hover {
  color: #ffffff !important;
  background: linear-gradient(135deg, #0f172a, #1d4ed8) !important;
}

.header-call,
.header .wishlist.label-down,
.cart-dropdown > a {
  min-width: 76px;
  min-height: 58px;
  padding: 8px 12px !important;
  border: 1px solid transparent;
  border-radius: 8px;
  transition: transform .2s var(--pc-ease), border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.header-call {
  min-width: 204px;
  justify-content: center;
}

.header-call:hover,
.header .wishlist.label-down:hover,
.cart-dropdown:hover > a {
  transform: translateY(-2px);
  border-color: rgba(37, 99, 235, .14);
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(15, 23, 42, .08);
}

.header-call .w-icon-call,
.header .wishlist.label-down i,
.cart-dropdown .w-icon-cart {
  color: #0f172a !important;
  transition: transform .2s var(--pc-ease), color .2s ease;
}

.header-call:hover .w-icon-call,
.header .wishlist.label-down:hover i,
.cart-dropdown:hover .w-icon-cart {
  transform: translateY(-1px) scale(1.05);
  color: #1d4ed8 !important;
}

.header-call .chat,
.header-call .chat a,
.header .wishlist-label,
.cart-dropdown .cart-label {
  color: #475569 !important;
  font-size: 12px !important;
  line-height: 1.2 !important;
  font-weight: 650 !important;
  letter-spacing: 0 !important;
}

.header-call .phone-number {
  color: #0f172a !important;
  font-size: 15px !important;
  font-weight: 780 !important;
  letter-spacing: 0 !important;
}

.cart-dropdown .cart-count {
  display: inline-grid !important;
  place-items: center;
  min-width: 22px !important;
  height: 22px !important;
  border: 2px solid #ffffff;
  color: #ffffff !important;
  background: #1d4ed8 !important;
  box-shadow: 0 8px 18px rgba(37, 99, 235, .24);
}

.header-bottom {
  background: rgba(255, 255, 255, .86) !important;
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 36px rgba(15, 23, 42, .045);
}

.sticky-header.fixed {
  background: rgba(255, 255, 255, .92) !important;
  box-shadow: 0 18px 46px rgba(15, 23, 42, .12) !important;
}

.header-bottom .main-nav .menu > li > a {
  min-height: 58px;
  align-items: center;
}

@media (max-width: 1199px) {
  .header-search.hs-expanded {
    max-width: 480px !important;
    margin-left: 24px !important;
  }

  .header-call {
    min-width: 170px;
  }
}

@media (max-width: 991px) {
  .header-middle {
    min-height: 112px !important;
  }

  .header-middle .container {
    min-height: 112px !important;
  }

  .mobile-menu-toggle {
    display: inline-grid !important;
    width: 44px !important;
    height: 44px !important;
    place-items: center;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 12px 24px rgba(15, 23, 42, .06);
  }
}

@media (min-width: 1200px) {
  body.home .intro-section .banner-content {
    margin-left: 390px !important;
    max-width: 620px !important;
  }
}

@media (min-width: 1400px) {
  body.home .intro-section .banner-content {
    margin-left: 420px !important;
  }
}

@media (max-width: 575px) {
  .header .logo img {
    max-width: 152px !important;
    width: 152px !important;
  }

  .header-top .dropdown > a,
  .header-top .header-right > a {
    font-size: 11px !important;
  }
}

@media (min-width: 992px) {
  .header-middle,
  .header-middle .container {
    height: 146px !important;
    min-height: 146px !important;
  }

  .header-middle .container {
    align-items: center !important;
  }
}

.header-top .dropdown > .dropdown-box {
  display: grid !important;
  top: calc(100% + 8px) !important;
  right: 0 !important;
  left: auto !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: translateY(8px) !important;
}

.header-top .dropdown:hover > .dropdown-box,
.header-top .dropdown:focus-within > .dropdown-box,
.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):hover > .dropdown-box,
.header-top .dropdown:not(.pc-open):not(.show):focus-within > .dropdown-box {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateY(0) !important;
}

/* Cart and checkout premium flow */
.cart {
  background:
    radial-gradient(circle at 10% 8%, rgba(37, 99, 235, .08), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(22, 163, 74, .08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 54%, #ffffff 100%) !important;
}

.cart .breadcrumb-nav {
  border-top: 0 !important;
  padding: 22px 0 16px;
  background:
    linear-gradient(180deg, rgba(239, 246, 255, .66), rgba(255, 255, 255, .2));
}

.shop-breadcrumb {
  position: relative;
  max-width: 820px;
  margin: 0 auto !important;
  padding: 10px !important;
  border: 1px solid rgba(15, 23, 42, .07);
  border-radius: 8px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 18px 44px rgba(15, 23, 42, .07);
}

.shop-breadcrumb li {
  position: relative;
  min-height: 42px !important;
  padding: 8px 14px !important;
  border-radius: 8px !important;
  transition: background .18s ease, color .18s ease, transform .18s var(--pc-ease);
}

.shop-breadcrumb li.active {
  color: #ffffff !important;
  background: linear-gradient(135deg, #0f172a, #1d4ed8) !important;
  box-shadow: 0 14px 30px rgba(37, 99, 235, .2);
}

.shop-breadcrumb li:not(.active):hover {
  transform: translateY(-1px);
  background: #eff6ff;
}

.cart .page-content > .container {
  max-width: 1240px !important;
}

.cart .row.gutter-lg {
  align-items: flex-start;
}

.cart .shop-table,
.cart .cart-table {
  border: 1px solid rgba(15, 23, 42, .07) !important;
  border-radius: 8px !important;
  background: rgba(255, 255, 255, .96) !important;
  box-shadow: 0 24px 62px rgba(15, 23, 42, .075);
  overflow: hidden;
  border-collapse: separate !important;
  border-spacing: 0 !important;
}

.cart .cart-table thead th {
  padding: 18px 16px !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(15, 23, 42, .07) !important;
  color: #475569 !important;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  font-size: 12px !important;
  line-height: 1.2 !important;
  font-weight: 780 !important;
  text-transform: uppercase;
}

.cart .cart-table tbody td {
  padding: 18px 16px !important;
  border-bottom: 1px solid rgba(15, 23, 42, .06) !important;
  vertical-align: middle !important;
}

.cart .cart-table tbody tr {
  transition: background .18s ease;
}

.cart .cart-table tbody tr:hover {
  background: rgba(239, 246, 255, .55);
}

.cart .cart-table .pc-cart-empty-row:hover {
  background: transparent;
}

.pc-cart-empty-row td {
  padding: 0 !important;
}

.pc-cart-empty-state {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 12px;
  min-height: 310px;
  padding: 52px 24px;
  overflow: hidden;
  text-align: center;
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 0%, rgba(37, 99, 235, .12), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #f8fafc 56%, #eef6ff 100%);
}

.pc-cart-empty-state:before,
.pc-cart-empty-state:after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.pc-cart-empty-state:before {
  width: 180px;
  height: 180px;
  right: -70px;
  top: -58px;
  background: rgba(37, 99, 235, .08);
}

.pc-cart-empty-state:after {
  width: 120px;
  height: 120px;
  left: 10%;
  bottom: -54px;
  background: rgba(22, 163, 74, .08);
}

.pc-cart-empty-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 68px;
  height: 68px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(37, 99, 235, .14);
  border-radius: 8px;
  color: #1d4ed8;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 18px 42px rgba(37, 99, 235, .12);
  font-size: 30px;
}

.pc-cart-empty-state strong,
.pc-cart-empty-state p,
.pc-cart-empty-state a {
  position: relative;
  z-index: 1;
}

.pc-cart-empty-state strong {
  color: #0f172a;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.08;
  font-weight: 760;
  letter-spacing: 0;
}

.pc-cart-empty-state p {
  max-width: 520px;
  margin: 0 0 8px;
  color: #64748b;
  font-size: 15px;
  line-height: 1.7;
}

.cart .product-thumbnail figure {
  width: 96px !important;
  height: 108px !important;
  border: 1px solid rgba(15, 23, 42, .07);
  border-radius: 8px;
  background: #f8fafc;
  overflow: hidden;
  box-shadow: 0 12px 26px rgba(15, 23, 42, .06);
}

.cart .product-thumbnail img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.cart .cart-table .product-name a,
.cart .cart-table .product-name {
  color: #0f172a !important;
  font-size: 15px !important;
  line-height: 1.45 !important;
  font-weight: 640 !important;
}

.cart .cart-table .product-price,
.cart .cart-table .product-subtotal,
.cart .cart-table .amount {
  color: #1d4ed8 !important;
  font-size: 16px !important;
  font-weight: 780 !important;
}

.cart .quantity {
  min-height: 44px !important;
  border: 1px solid rgba(15, 23, 42, .1) !important;
  border-radius: 8px !important;
  background: #ffffff !important;
  box-shadow: 0 10px 22px rgba(15, 23, 42, .04);
}

.cart .quantity input {
  color: #0f172a !important;
  font-weight: 700 !important;
}

.cart .btn,
.cart button,
.cart input[type="submit"] {
  border-radius: 8px !important;
  letter-spacing: 0 !important;
  transition: transform .2s var(--pc-ease), box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.cart .btn:hover,
.cart button:hover,
.cart input[type="submit"]:hover {
  transform: translateY(-2px);
}

.cart-action,
.cart .coupon,
.basket-summary,
.cart .order-summary,
.cart .checkout,
.cart .card,
.cart .bg2,
.cart .border {
  border: 1px solid rgba(15, 23, 42, .07) !important;
  border-radius: 8px !important;
  background: rgba(255, 255, 255, .96) !important;
  box-shadow: 0 22px 58px rgba(15, 23, 42, .075);
}

.cart-action {
  padding: 18px !important;
}

.basket-summary,
.cart .order-summary {
  position: sticky;
  top: 92px;
  padding: 22px !important;
  overflow: hidden;
}

.basket-summary:before,
.cart .order-summary:before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #1d4ed8, #16a34a, #f97316);
}

.basket-summary h3,
.cart .order-summary h3,
.cart h3,
.cart h4 {
  color: #0f172a !important;
  font-weight: 760 !important;
  letter-spacing: 0 !important;
}

.cart .form-control,
.cart input:not([type="checkbox"]):not([type="radio"]),
.cart select,
.cart textarea {
  min-height: 46px;
  border: 1px solid rgba(15, 23, 42, .11) !important;
  border-radius: 8px !important;
  color: #0f172a !important;
  background: #ffffff !important;
  font-size: 14px !important;
  font-weight: 560 !important;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .04);
  outline: 0;
}

.cart .form-control:focus,
.cart input:not([type="checkbox"]):not([type="radio"]):focus,
.cart select:focus,
.cart textarea:focus {
  border-color: rgba(37, 99, 235, .42) !important;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, .11) !important;
}

.cart .btn-checkout,
.cart .btn-dark,
.cart .btn-primary,
.cart input[type="submit"] {
  border: 0 !important;
  color: #ffffff !important;
  background: linear-gradient(135deg, #0f172a, #1d4ed8) !important;
  box-shadow: 0 18px 36px rgba(37, 99, 235, .22) !important;
}

.cart .btn-checkout:hover,
.cart .btn-dark:hover,
.cart .btn-primary:hover,
.cart input[type="submit"]:hover {
  box-shadow: 0 24px 48px rgba(37, 99, 235, .3) !important;
}

.cart .btn-outline,
.cart .btn-shopping,
.cart .btn-update {
  border: 1px solid rgba(15, 23, 42, .1) !important;
  color: #0f172a !important;
  background: #ffffff !important;
  box-shadow: 0 14px 28px rgba(15, 23, 42, .06);
}

.cart .btn-outline:hover,
.cart .btn-shopping:hover,
.cart .btn-update:hover {
  border-color: rgba(37, 99, 235, .22) !important;
  color: #1d4ed8 !important;
  background: #eff6ff !important;
}

@media (max-width: 991px) {
  .basket-summary,
  .cart .order-summary {
    position: relative;
    top: auto;
  }

  .cart .cart-table {
    display: block;
    overflow-x: auto;
  }
}

@media (max-width: 575px) {
  .cart .breadcrumb-nav {
    padding: 14px 10px;
  }

  .shop-breadcrumb {
    justify-content: flex-start !important;
    overflow-x: auto;
  }

  .cart .cart-table thead {
    display: none;
  }

  .cart .cart-table,
  .cart .cart-table tbody,
  .cart .cart-table tr,
  .cart .cart-table td {
    display: block;
    width: 100%;
  }

  .cart .cart-table tr {
    padding: 14px;
    border-bottom: 1px solid rgba(15, 23, 42, .08);
  }

  .cart .cart-table tbody td {
    padding: 8px 0 !important;
    border-bottom: 0 !important;
  }

  .cart .product-thumbnail figure {
    width: 100% !important;
    height: 220px !important;
  }
}

/* Product detail premium conversion layer */
.pc-product-main {
  background:
    radial-gradient(circle at 10% 6%, rgba(37, 99, 235, .08), transparent 28%),
    radial-gradient(circle at 92% 24%, rgba(22, 163, 74, .08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 55%, #ffffff 100%) !important;
}

.pc-product-main .breadcrumb-nav {
  max-width: 1240px !important;
}

.pc-product-main .breadcrumb {
  display: flex !important;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.pc-product-main .breadcrumb li {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 10px;
  border: 1px solid rgba(15, 23, 42, .06);
  border-radius: 8px;
  background: rgba(255, 255, 255, .82);
  font-size: 12px !important;
  line-height: 1.2 !important;
}

.pc-product-main .main-content > .product-single {
  position: relative;
  overflow: hidden !important;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(248, 250, 252, .96)) !important;
}

.pc-product-main .main-content > .product-single:before {
  content: "";
  position: absolute;
  inset: 0;
  height: 4px;
  background: linear-gradient(90deg, #1d4ed8, #16a34a, #f97316);
  z-index: 3;
}

.pc-product-main .product-gallery {
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffffff, #f8fafc) !important;
  box-shadow: 0 24px 60px rgba(15, 23, 42, .08);
}

.pc-product-main .product-gallery:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(120deg, transparent 24%, rgba(255, 255, 255, .48) 42%, transparent 62%);
  opacity: 0;
  transform: translateX(-120%);
  pointer-events: none;
  transition: opacity .28s ease, transform .82s var(--pc-ease);
}

.pc-product-main .product-gallery:hover:after {
  opacity: .75;
  transform: translateX(120%);
}

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

.pc-product-main .product-gallery .swiper-button-next {
  right: 14px !important;
}

.pc-product-main .product-gallery .swiper-button-prev {
  left: 14px !important;
}

.pc-product-main .product-gallery:before {
  border: 1px solid rgba(37, 99, 235, .13);
  background: rgba(239, 246, 255, .94) !important;
  box-shadow: 0 12px 24px rgba(37, 99, 235, .1);
}

.pc-product-main .product-single > .col-md-6:last-child > .product-details {
  position: relative;
}

.pc-product-main .product-single > .col-md-6:last-child > .product-details:before {
  content: "Satışa hazır ürün vitrini";
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  margin-bottom: 12px;
  padding: 6px 11px;
  border: 1px solid rgba(37, 99, 235, .14);
  border-radius: 8px;
  color: #1d4ed8;
  background: #eff6ff;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 780;
}

.pc-product-main .product-title {
  max-width: 680px;
  text-wrap: balance;
  letter-spacing: 0 !important;
}

.pc-product-main .product-bm-wrapper {
  padding: 12px;
  border: 1px solid rgba(15, 23, 42, .07);
  border-radius: 8px;
  background: rgba(255, 255, 255, .82);
}

.pc-product-main .new_price_system {
  position: relative;
  width: 100%;
  padding: 18px 20px;
  border: 1px solid rgba(37, 99, 235, .13);
  border-radius: 8px;
  background:
    linear-gradient(135deg, #eff6ff, #ffffff 58%, #f0fdf4);
  box-shadow: 0 18px 42px rgba(37, 99, 235, .08);
}

.pc-product-main .new_price_system:after {
  content: "Güvenli fiyatlandırma";
  margin-left: auto;
  padding: 5px 9px;
  border-radius: 8px;
  color: #16a34a;
  background: rgba(22, 163, 74, .1);
  font-size: 11px;
  line-height: 1.2;
  font-weight: 780;
}

.pc-product-main .ratings-container {
  margin: 16px 0 !important;
}

.pc-product-main .product-short-desc {
  position: relative;
  overflow: hidden;
}

.pc-product-main .product-short-desc:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #1d4ed8, #16a34a);
}

.pc-product-main .product-short-desc li,
.pc-product-main .product-short-desc p,
.pc-product-main .product-short-desc div {
  font-weight: 540;
}

.product-single .product-variation-form.varyant {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, #ffffff, #f8fafc) !important;
  transition: transform .2s var(--pc-ease), border-color .2s ease, box-shadow .2s ease;
}

.product-single .product-variation-form.varyant:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 99, 235, .18);
  box-shadow: 0 18px 36px rgba(15, 23, 42, .08);
}

.product-single .product-variation-form.varyant label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.product-single .product-variation-form.varyant label:before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: linear-gradient(135deg, #1d4ed8, #16a34a);
}

.pc-product-main .btn-cart {
  position: relative;
  overflow: hidden;
}

.pc-product-main .btn-cart:after {
  content: "→";
  margin-left: 10px;
  transition: transform .18s var(--pc-ease);
}

.pc-product-main .btn-cart:hover:after {
  transform: translateX(3px);
}

.pc-product-tabs {
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, .07) !important;
  background: rgba(255, 255, 255, .96) !important;
}

.pc-product-tabs .nav-tabs {
  background:
    linear-gradient(180deg, #ffffff, #f8fafc) !important;
}

.pc-product-tabs .nav-link {
  transition: color .2s ease, background .2s ease, transform .2s var(--pc-ease);
}

.pc-product-tabs .nav-link:hover {
  transform: translateY(-1px);
  background: rgba(239, 246, 255, .7);
}

.pc-product-tabs .tab-pane.active {
  animation: pcTabContentIn .32s var(--pc-ease) both;
}

@keyframes pcTabContentIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 767px) {
  .pc-product-main .product-gallery .swiper-button-next,
  .pc-product-main .product-gallery .swiper-button-prev {
    width: 36px !important;
    height: 36px !important;
  }

  .pc-product-main .product-gallery .swiper-button-next {
    right: 10px !important;
  }

  .pc-product-main .product-gallery .swiper-button-prev {
    left: 10px !important;
  }

  .pc-product-main .product-single > .col-md-6:last-child > .product-details:before {
    margin-top: 4px;
  }

  .pc-product-main .new_price_system:after {
    margin-left: 0;
  }

  .pc-product-main .breadcrumb li {
    max-width: 100%;
  }

  .pc-product-main .sidebar-toggle {
    display: none !important;
  }
}

/* Premium action pages */
.pc-action-page {
  background:
    radial-gradient(circle at 8% 10%, rgba(37, 99, 235, .1), transparent 30%),
    radial-gradient(circle at 92% 12%, rgba(22, 163, 74, .1), transparent 28%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 48%, #f8fafc 100%);
}

.pc-action-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(44px, 6vw, 82px) 0 clamp(58px, 7vw, 98px);
}

.pc-action-hero:before,
.pc-action-hero:after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.pc-action-hero:before {
  width: 380px;
  height: 380px;
  right: -120px;
  top: -170px;
  background: rgba(37, 99, 235, .08);
}

.pc-action-hero:after {
  width: 260px;
  height: 260px;
  left: -110px;
  bottom: -130px;
  background: rgba(22, 163, 74, .08);
}

.pc-action-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .72fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
}

.pc-action-copy {
  max-width: 720px;
}

.pc-action-eyebrow {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 12px;
  border: 1px solid rgba(37, 99, 235, .13);
  border-radius: 8px;
  color: #1d4ed8;
  background: rgba(239, 246, 255, .86);
  box-shadow: 0 14px 32px rgba(37, 99, 235, .08);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 780;
}

.pc-action-eyebrow:before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: linear-gradient(135deg, #1d4ed8, #16a34a);
  box-shadow: 0 0 0 5px rgba(37, 99, 235, .09);
}

.pc-action-copy h1 {
  max-width: 760px;
  margin: 0 0 18px;
  color: #07111f;
  font-size: clamp(38px, 5.6vw, 76px);
  line-height: .98;
  font-weight: 780;
  letter-spacing: 0 !important;
  text-wrap: balance;
}

.pc-action-copy p {
  max-width: 620px;
  margin: 0;
  color: #64748b;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.8;
  font-weight: 470;
}

.pc-action-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.pc-action-badges span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 8px;
  color: #0f172a;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 14px 32px rgba(15, 23, 42, .06);
  font-size: 13px;
  font-weight: 720;
}

.pc-action-badges i {
  color: #1d4ed8;
}

.pc-action-card {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(248,250,252,.94));
  box-shadow: 0 34px 90px rgba(15, 23, 42, .14);
  backdrop-filter: blur(18px);
}

.pc-action-card:before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #1d4ed8, #16a34a);
}

.pc-action-card:after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  right: -76px;
  bottom: -86px;
  border-radius: 999px;
  background: rgba(37, 99, 235, .07);
  pointer-events: none;
}

.pc-action-card-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.pc-action-icon {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(37, 99, 235, .14);
  border-radius: 8px;
  color: #1d4ed8;
  background: #eff6ff;
  box-shadow: 0 16px 34px rgba(37, 99, 235, .11);
  font-size: 25px;
}

.pc-action-card-head strong {
  display: block;
  color: #0f172a;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 760;
  letter-spacing: 0;
}

.pc-action-card-head small {
  display: block;
  margin-top: 4px;
  color: #64748b;
  font-size: 13px;
  line-height: 1.3;
  font-weight: 560;
}

.pc-action-form {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.pc-action-form label {
  margin: 2px 0 0;
  color: #0f172a;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 760;
}

.pc-action-input {
  position: relative;
}

.pc-action-input i {
  position: absolute;
  left: 15px;
  top: 50%;
  z-index: 2;
  color: #1d4ed8;
  transform: translateY(-50%);
  font-size: 16px;
}

.pc-action-input input,
.pc-action-input select {
  width: 100%;
  min-height: 52px;
  padding: 0 16px 0 44px;
  border: 1px solid rgba(15, 23, 42, .11);
  border-radius: 8px;
  color: #0f172a;
  background: rgba(255, 255, 255, .9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .86);
  font-size: 14px;
  font-weight: 560;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s var(--pc-ease);
}

.pc-action-input input:focus,
.pc-action-input select:focus {
  border-color: rgba(37, 99, 235, .42);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, .1);
  transform: translateY(-1px);
}

.pc-action-form .btn {
  position: relative;
  min-height: 52px;
  margin-top: 8px;
  overflow: hidden;
  border: 0 !important;
  color: #ffffff !important;
  background: linear-gradient(135deg, #0f172a, #1d4ed8) !important;
  box-shadow: 0 22px 44px rgba(37, 99, 235, .25) !important;
  font-weight: 780 !important;
  letter-spacing: 0 !important;
  transition: transform .2s var(--pc-ease), box-shadow .2s ease;
}

.pc-action-form .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 56px rgba(37, 99, 235, .32) !important;
}

.pc-action-alert {
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
  padding: 13px 14px;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.55;
  font-weight: 680;
}

.pc-action-alert-success {
  border: 1px solid rgba(22, 163, 74, .18);
  color: #15803d;
  background: rgba(240, 253, 244, .92);
}

.pc-action-alert-danger {
  border: 1px solid rgba(239, 68, 68, .18);
  color: #b91c1c;
  background: rgba(254, 242, 242, .92);
}

.pc-contact-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.pc-contact-item {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  min-height: 76px;
  padding: 13px;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 8px;
  color: inherit;
  background: rgba(255, 255, 255, .74);
  box-shadow: 0 14px 34px rgba(15, 23, 42, .05);
  transition: transform .2s var(--pc-ease), border-color .2s ease, box-shadow .2s ease;
}

.pc-contact-item:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 99, 235, .2);
  box-shadow: 0 20px 42px rgba(15, 23, 42, .09);
}

.pc-contact-item > i {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #1d4ed8;
  background: #eff6ff;
  font-size: 20px;
}

.pc-contact-item small {
  display: block;
  margin-bottom: 4px;
  color: #64748b;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 720;
}

.pc-contact-item strong {
  display: block;
  color: #0f172a;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 740;
  overflow-wrap: anywhere;
}

.pc-map-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, .34fr) minmax(0, 1fr);
  gap: 18px;
  margin-top: clamp(28px, 5vw, 64px);
  padding: 18px;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 8px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 28px 70px rgba(15, 23, 42, .1);
}

.pc-map-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(18px, 3vw, 34px);
  border-radius: 8px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, .96), rgba(29, 78, 216, .88));
}

.pc-map-copy span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 8px;
  color: #bfdbfe;
  background: rgba(255, 255, 255, .1);
  font-size: 12px;
  font-weight: 760;
}

.pc-map-copy strong {
  max-width: 380px;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.05;
  font-weight: 780;
  letter-spacing: 0;
}

.pc-map-copy p {
  max-width: 360px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, .76);
  font-size: 14px;
  line-height: 1.7;
}

.pc-map-frame {
  min-height: 380px;
  overflow: hidden;
  border-radius: 8px;
  background: #f1f5f9;
}

.pc-map-frame iframe {
  width: 100% !important;
  min-height: 380px !important;
  border: 0 !important;
  display: block;
}

.pc-map-placeholder {
  display: grid;
  min-height: 380px;
  place-items: center;
  align-content: center;
  gap: 10px;
  padding: 28px;
  text-align: center;
  color: #64748b;
}

.pc-map-placeholder i {
  color: #1d4ed8;
  font-size: 34px;
}

.pc-map-placeholder strong {
  color: #0f172a;
  font-size: 20px;
  font-weight: 760;
}

.pc-bank-copy {
  max-width: 860px;
  margin-bottom: clamp(28px, 5vw, 58px);
}

.pc-bank-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pc-bank-card,
.pc-bank-empty {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 8px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 24px 60px rgba(15, 23, 42, .08);
}

.pc-bank-card {
  display: grid;
  grid-template-rows: 118px 1fr;
  transition: transform .22s var(--pc-ease), box-shadow .22s ease, border-color .22s ease;
}

.pc-bank-card:hover {
  transform: translateY(-5px);
  border-color: rgba(37, 99, 235, .22);
  box-shadow: 0 32px 74px rgba(15, 23, 42, .13);
}

.pc-bank-card:before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #1d4ed8, #16a34a);
}

.pc-bank-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 0%, rgba(37, 99, 235, .13), transparent 44%),
    linear-gradient(135deg, #ffffff, #f8fafc);
}

.pc-bank-logo img {
  max-width: 190px;
  max-height: 68px;
  object-fit: contain;
}

.pc-bank-logo i {
  color: #1d4ed8;
  font-size: 38px;
}

.pc-bank-card-body {
  padding: 22px;
}

.pc-bank-card-body span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 9px;
  border-radius: 8px;
  color: #1d4ed8;
  background: #eff6ff;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 780;
}

.pc-bank-card-body h2 {
  margin: 0 0 12px;
  color: #0f172a;
  font-size: 22px;
  line-height: 1.15;
  font-weight: 760;
  letter-spacing: 0;
}

.pc-bank-desc,
.pc-bank-desc p,
.pc-bank-desc div {
  color: #475569;
  font-size: 14px;
  line-height: 1.75;
  font-weight: 520;
  overflow-wrap: anywhere;
}

.pc-bank-desc strong,
.pc-bank-desc b {
  color: #0f172a;
  font-weight: 760;
}

.pc-bank-empty {
  grid-column: 1 / -1;
  display: grid;
  min-height: 250px;
  place-items: center;
  align-content: center;
  gap: 10px;
  padding: 36px;
  text-align: center;
}

.pc-bank-empty i {
  color: #1d4ed8;
  font-size: 38px;
}

.pc-bank-empty strong {
  color: #0f172a;
  font-size: 24px;
  font-weight: 760;
}

.pc-bank-empty p {
  max-width: 440px;
  margin: 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.7;
}

.pc-blog-copy,
.pc-search-copy {
  max-width: 850px;
  margin-bottom: clamp(28px, 5vw, 56px);
}

.pc-blog-grid,
.pc-search-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pc-blog-card,
.pc-search-product,
.pc-blog-empty,
.pc-search-empty {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 8px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 24px 60px rgba(15, 23, 42, .08);
}

.pc-blog-card,
.pc-search-product {
  display: grid;
  transition: transform .22s var(--pc-ease), box-shadow .22s ease, border-color .22s ease;
}

.pc-blog-card:hover,
.pc-search-product:hover {
  transform: translateY(-5px);
  border-color: rgba(37, 99, 235, .2);
  box-shadow: 0 34px 78px rgba(15, 23, 42, .13);
}

.pc-blog-media,
.pc-search-media {
  position: relative;
  display: block;
  overflow: hidden;
  background: #f8fafc;
}

.pc-blog-media {
  aspect-ratio: 1.45 / 1;
}

.pc-search-media {
  aspect-ratio: 1 / .92;
}

.pc-blog-media:after,
.pc-search-media:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(15, 23, 42, .18));
  opacity: .75;
  pointer-events: none;
}

.pc-blog-media img,
.pc-search-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .5s var(--pc-ease);
}

.pc-search-media img {
  object-fit: contain;
  padding: 18px;
  background: radial-gradient(circle at 50% 20%, #ffffff, #f1f5f9);
}

.pc-blog-card:hover img,
.pc-search-product:hover img {
  transform: scale(1.045);
}

.pc-blog-body,
.pc-search-product-body {
  padding: 22px;
}

.pc-blog-tag,
.pc-search-product-body span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 9px;
  border-radius: 8px;
  color: #1d4ed8;
  background: #eff6ff;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 780;
}

.pc-blog-body h2,
.pc-search-product-body h2 {
  margin: 0 0 10px;
  color: #0f172a;
  font-size: 22px;
  line-height: 1.18;
  font-weight: 720;
  letter-spacing: 0;
  text-wrap: balance;
}

.pc-blog-body h2 a,
.pc-search-product-body h2 a {
  color: inherit;
}

.pc-blog-body p {
  min-height: 52px;
  margin: 0 0 18px;
  color: #64748b;
  font-size: 14px;
  line-height: 1.7;
}

.pc-blog-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1d4ed8;
  font-size: 13px;
  font-weight: 780;
}

.pc-search-toolbar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
  padding: 12px;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 8px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 18px 46px rgba(15, 23, 42, .07);
}

.pc-search-toolbar > span {
  flex: 0 0 auto;
  color: #64748b;
  font-size: 13px;
  font-weight: 720;
}

.pc-search-inline {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  flex: 1 1 auto;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, .1);
  border-radius: 8px;
  background: #ffffff;
}

.pc-search-inline i {
  position: absolute;
  left: 15px;
  top: 50%;
  color: #1d4ed8;
  transform: translateY(-50%);
}

.pc-search-inline input {
  min-height: 48px;
  padding: 0 14px 0 44px;
  border: 0;
  outline: none;
  color: #0f172a;
  font-size: 14px;
  font-weight: 560;
}

.pc-search-inline button {
  min-width: 92px;
  border: 0;
  color: #ffffff;
  background: linear-gradient(135deg, #0f172a, #1d4ed8);
  font-size: 13px;
  font-weight: 780;
}

.pc-search-product-body .ratings-container {
  margin: 8px 0 10px !important;
}

.pc-search-product-body strong {
  display: block;
  color: #1d4ed8;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 780;
}

.pc-blog-empty,
.pc-search-empty {
  grid-column: 1 / -1;
  display: grid;
  min-height: 250px;
  place-items: center;
  align-content: center;
  gap: 10px;
  padding: 36px;
  text-align: center;
}

.pc-blog-empty i,
.pc-search-empty i {
  color: #1d4ed8;
  font-size: 38px;
}

.pc-blog-empty strong,
.pc-search-empty strong {
  color: #0f172a;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 760;
}

.pc-blog-empty p,
.pc-search-empty p {
  max-width: 460px;
  margin: 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.7;
}

.pc-blog-detail {
  padding: clamp(42px, 6vw, 84px) 0;
}

.pc-blog-detail-hero {
  max-width: 930px;
  margin: 0 auto clamp(24px, 4vw, 42px);
  text-align: center;
}

.pc-blog-detail-hero .pc-action-eyebrow {
  margin-left: auto;
  margin-right: auto;
}

.pc-blog-detail-hero h1 {
  margin: 0 0 16px;
  color: #07111f;
  font-size: clamp(36px, 5.5vw, 72px);
  line-height: 1;
  font-weight: 780;
  letter-spacing: 0;
  text-wrap: balance;
}

.pc-blog-detail-hero p {
  max-width: 720px;
  margin: 0 auto;
  color: #64748b;
  font-size: 17px;
  line-height: 1.8;
}

.pc-blog-detail-media {
  position: relative;
  overflow: hidden;
  max-width: 1120px;
  margin: 0 auto clamp(26px, 4vw, 50px);
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 8px;
  background: #f8fafc;
  box-shadow: 0 34px 90px rgba(15, 23, 42, .12);
}

.pc-blog-detail-media img {
  width: 100%;
  max-height: 520px;
  display: block;
  object-fit: cover;
}

.pc-blog-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  align-items: start;
}

.pc-blog-content,
.pc-blog-side-card {
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 8px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 24px 60px rgba(15, 23, 42, .07);
}

.pc-blog-content {
  padding: clamp(24px, 4vw, 46px);
  color: #334155;
  font-size: 16px;
  line-height: 1.9;
}

.pc-blog-content h2,
.pc-blog-content h3,
.pc-blog-content h4 {
  color: #0f172a;
  line-height: 1.18;
  font-weight: 760;
  letter-spacing: 0;
}

.pc-blog-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.pc-blog-sidebar {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 16px;
}

.pc-blog-side-card {
  padding: 20px;
}

.pc-blog-side-card > strong {
  display: block;
  margin-bottom: 15px;
  color: #0f172a;
  font-size: 18px;
  font-weight: 760;
}

.pc-recent-post {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid rgba(15, 23, 42, .07);
  color: #0f172a;
}

.pc-recent-post img {
  width: 72px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
}

.pc-recent-post span {
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
}

.pc-blog-share-icons {
  display: flex;
  gap: 8px;
}

.pc-blog-share-icons a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #1d4ed8;
  background: #eff6ff;
}

.pc-auth-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(380px, .74fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
}

.pc-auth-copy h1 {
  max-width: 760px;
  margin: 0 0 18px;
  color: #07111f;
  font-size: clamp(38px, 5.4vw, 74px);
  line-height: .98;
  font-weight: 780;
  letter-spacing: 0;
  text-wrap: balance;
}

.pc-auth-copy p {
  max-width: 610px;
  margin: 0;
  color: #64748b;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.8;
}

.pc-auth-card {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 8px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 34px 90px rgba(15, 23, 42, .14);
  backdrop-filter: blur(18px);
}

.pc-auth-card:before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #1d4ed8, #16a34a);
}

.pc-auth-tabs {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 24px;
  padding: 6px;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 8px;
  background: #f8fafc;
}

.pc-auth-tabs a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #64748b;
  font-size: 13px;
  font-weight: 780;
  transition: color .2s ease, background .2s ease, box-shadow .2s ease;
}

.pc-auth-tabs a.active,
.pc-auth-tabs a:hover {
  color: #0f172a;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, .08);
}

.pc-auth-two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.pc-auth-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: #64748b;
  font-size: 13px;
  line-height: 1.45;
}

.pc-auth-row label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 !important;
  color: #64748b !important;
  font-size: 13px !important;
  font-weight: 650 !important;
}

.pc-auth-row input,
.pc-auth-consents input {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  accent-color: #2563eb;
}

.pc-auth-row a,
.pc-auth-consents a {
  color: #1d4ed8;
  font-weight: 760;
}

.pc-auth-consents {
  display: grid;
  gap: 9px;
  padding: 14px;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 8px;
  background: #f8fafc;
}

.pc-auth-consents label {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 0 !important;
  color: #64748b !important;
  font-size: 12px !important;
  line-height: 1.55 !important;
  font-weight: 600 !important;
}

.pc-wishlist-copy {
  max-width: 850px;
  margin-bottom: clamp(28px, 5vw, 56px);
}

.pc-wishlist-empty,
.pc-wishlist-table,
.tab-vertical .nav-tabs,
.tab-content .account-details-form,
.tab-content .accordion.show-code-action,
.tab-content .bg2.border.p20 {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(15, 23, 42, .08) !important;
  border-radius: 8px !important;
  background: rgba(255, 255, 255, .94) !important;
  box-shadow: 0 24px 60px rgba(15, 23, 42, .08) !important;
}

.pc-wishlist-empty {
  display: grid;
  min-height: 310px;
  place-items: center;
  align-content: center;
  gap: 12px;
  padding: 44px 24px;
  text-align: center;
  overflow: hidden;
}

.pc-wishlist-empty:before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -84px;
  top: -80px;
  border-radius: 999px;
  background: rgba(37, 99, 235, .08);
}

.pc-wishlist-empty i {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 70px;
  height: 70px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #1d4ed8;
  background: #eff6ff;
  font-size: 32px;
}

.pc-wishlist-empty strong {
  position: relative;
  z-index: 1;
  color: #0f172a;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.1;
  font-weight: 760;
}

.pc-wishlist-empty p {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin: 0;
  color: #64748b;
  font-size: 15px;
  line-height: 1.7;
}

.pc-wishlist-empty .btn {
  position: relative;
  z-index: 1;
}

.pc-wishlist-table {
  display: grid;
  gap: 0;
  overflow: hidden;
}

.pc-wishlist-item {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border-bottom: 1px solid rgba(15, 23, 42, .07);
  transition: background .2s ease;
}

.pc-wishlist-item:last-child {
  border-bottom: 0;
}

.pc-wishlist-item:hover {
  background: rgba(239, 246, 255, .5);
}

.pc-wishlist-media {
  display: block;
  width: 116px;
  height: 116px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, .07);
  border-radius: 8px;
  background: #f8fafc;
}

.pc-wishlist-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}

.pc-wishlist-info span {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 5px 8px;
  border-radius: 8px;
  color: #1d4ed8;
  background: #eff6ff;
  font-size: 11px;
  font-weight: 780;
}

.pc-wishlist-info h2 {
  margin: 0 0 8px;
  color: #0f172a;
  font-size: 21px;
  line-height: 1.2;
  font-weight: 720;
  letter-spacing: 0;
}

.pc-wishlist-info h2 a {
  color: inherit;
}

.pc-wishlist-info strong {
  display: block;
  color: #1d4ed8;
  font-size: 18px;
  font-weight: 780;
}

.pc-wishlist-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pc-stock-pill {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 7px 10px;
  border-radius: 8px;
  color: #15803d;
  background: #f0fdf4;
  font-size: 12px;
  font-weight: 760;
}

.pc-wishlist-remove {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(239, 68, 68, .18);
  border-radius: 8px;
  color: #dc2626;
  background: #fef2f2;
}

.pc-result-hero {
  min-height: 620px;
  display: flex;
  align-items: center;
}

.pc-result-card {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 58px);
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 8px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(37, 99, 235, .1), transparent 35%),
    rgba(255, 255, 255, .96);
  box-shadow: 0 36px 96px rgba(15, 23, 42, .14);
}

.pc-result-card:before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #1d4ed8, #16a34a);
}

.pc-result-card.pc-result-error:before {
  background: linear-gradient(90deg, #ef4444, #f97316);
}

.pc-result-icon {
  display: inline-flex;
  width: 82px;
  height: 82px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 8px;
  font-size: 36px;
}

.pc-result-success .pc-result-icon {
  color: #15803d;
  background: #f0fdf4;
  box-shadow: 0 20px 44px rgba(22, 163, 74, .15);
}

.pc-result-error .pc-result-icon {
  color: #dc2626;
  background: #fef2f2;
  box-shadow: 0 20px 44px rgba(239, 68, 68, .14);
}

.pc-result-card .pc-action-eyebrow {
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}

.pc-result-card .pc-action-eyebrow:before {
  display: none;
}

.pc-result-card h1 {
  max-width: 620px;
  margin: 12px auto 14px;
  color: #07111f;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
  font-weight: 780;
  letter-spacing: 0;
  text-wrap: balance;
}

.pc-result-card p {
  max-width: 560px;
  margin: 0 auto;
  color: #64748b;
  font-size: 16px;
  line-height: 1.8;
}

.pc-result-meta {
  display: inline-grid;
  gap: 4px;
  min-width: 190px;
  margin-top: 24px;
  padding: 14px 18px;
  border: 1px solid rgba(37, 99, 235, .12);
  border-radius: 8px;
  background: #eff6ff;
}

.pc-result-meta span {
  color: #64748b;
  font-size: 12px;
  font-weight: 760;
}

.pc-result-meta strong {
  color: #1d4ed8;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 780;
}

.pc-result-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.pc-result-actions .btn {
  min-height: 48px;
  padding: 0 20px;
  border-radius: 8px !important;
  font-weight: 780 !important;
  letter-spacing: 0 !important;
}

.pc-result-actions .btn-dark {
  border: 0 !important;
  color: #ffffff !important;
  background: linear-gradient(135deg, #0f172a, #1d4ed8) !important;
  box-shadow: 0 20px 44px rgba(37, 99, 235, .24);
}

.pc-result-actions .btn-outline {
  border: 1px solid rgba(15, 23, 42, .1) !important;
  color: #0f172a !important;
  background: #ffffff !important;
}

.pc-static-header {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto clamp(24px, 4vw, 44px);
  text-align: center;
}

.pc-static-header .pc-action-eyebrow {
  margin-left: auto;
  margin-right: auto;
}

.pc-static-header h1 {
  margin: 0 0 14px;
  color: #07111f;
  font-size: clamp(36px, 5.4vw, 70px);
  line-height: 1;
  font-weight: 780;
  letter-spacing: 0;
  text-wrap: balance;
}

.pc-static-header p {
  max-width: 720px;
  margin: 0 auto;
  color: #64748b;
  font-size: 16px;
  line-height: 1.8;
}

.pc-static-media {
  position: relative;
  z-index: 1;
  max-width: 1060px;
  margin: 0 auto 24px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 8px;
  background: #f8fafc;
  box-shadow: 0 30px 78px rgba(15, 23, 42, .11);
}

.pc-static-media img {
  width: 100%;
  max-height: 460px;
  display: block;
  object-fit: cover;
}

.pc-static-content {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 8px;
  color: #334155;
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 24px 60px rgba(15, 23, 42, .08);
  font-size: 16px;
  line-height: 1.9;
}

.pc-static-content h2,
.pc-static-content h3,
.pc-static-content h4 {
  color: #0f172a;
  line-height: 1.2;
  font-weight: 760;
  letter-spacing: 0;
}

.pc-static-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.tab-vertical {
  align-items: flex-start;
}

.tab-vertical .nav-tabs {
  padding: 12px !important;
  overflow: hidden;
}

.tab-vertical .nav-tabs .nav-item {
  width: 100%;
  margin: 0 !important;
}

.tab-vertical .nav-tabs .nav-link {
  display: flex !important;
  min-height: 48px;
  align-items: center;
  padding: 0 14px !important;
  border: 0 !important;
  border-radius: 8px !important;
  color: #64748b !important;
  background: transparent !important;
  font-size: 14px !important;
  font-weight: 720 !important;
}

.tab-vertical .nav-tabs .nav-link:hover,
.tab-vertical .nav-tabs .nav-link.aktif,
.tab-vertical .nav-tabs .nav-link.active {
  color: #0f172a !important;
  background: #eff6ff !important;
}

.tab-content .bg2.border.p20,
.tab-content .account-details-form,
.tab-content .accordion.show-code-action {
  padding: clamp(20px, 3vw, 32px) !important;
}

.tab-content .bg2.border.p20 h2 {
  margin-bottom: 20px !important;
}

.tab-content .accordion .card {
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, .08) !important;
  border-radius: 8px !important;
}

.tab-content .accordion .card-header a {
  color: #0f172a !important;
  font-weight: 760 !important;
  letter-spacing: 0 !important;
  background: linear-gradient(135deg, #ffffff, #f8fafc) !important;
}

.compare-popup,
.compare-popup-overlay {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

@media (max-width: 991px) {
  .pc-action-hero-grid {
    grid-template-columns: 1fr;
  }

  .pc-action-copy {
    max-width: 100%;
  }

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

  .pc-bank-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pc-blog-grid,
  .pc-search-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pc-blog-detail-layout {
    grid-template-columns: 1fr;
  }

  .pc-blog-sidebar {
    position: static;
  }

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

  .pc-wishlist-item {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .pc-wishlist-actions {
    grid-column: 1 / -1;
    flex-wrap: wrap;
  }
}

@media (max-width: 575px) {
  .pc-action-hero {
    padding: 30px 0 46px;
  }

  .pc-action-copy h1 {
    font-size: 35px;
  }

  .pc-action-card {
    padding: 20px;
  }

  .pc-action-badges {
    gap: 8px;
  }

  .pc-action-badges span {
    width: 100%;
  }

  .pc-map-card {
    padding: 12px;
  }

  .pc-map-frame,
  .pc-map-frame iframe,
  .pc-map-placeholder {
    min-height: 280px !important;
  }

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

  .pc-bank-card {
    grid-template-rows: 104px 1fr;
  }

  .pc-blog-grid,
  .pc-search-grid {
    grid-template-columns: 1fr;
  }

  .pc-search-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

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

  .pc-search-inline button {
    min-height: 44px;
  }

  .pc-blog-detail {
    padding: 32px 0 44px;
  }

  .pc-blog-content,
  .pc-blog-side-card {
    padding: 18px;
  }

  .pc-auth-card {
    padding: 20px;
  }

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

  .pc-auth-row {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .pc-wishlist-media {
    width: 100%;
    height: 220px;
  }

  .pc-wishlist-actions .btn {
    width: calc(100% - 48px);
  }

  .pc-result-hero {
    min-height: auto;
  }

  .pc-result-actions {
    flex-direction: column;
  }

  .pc-result-actions .btn {
    width: 100%;
  }
}

/* Final override: premium baby boutique product cards */
.pc-shop-products {
  row-gap: 28px !important;
}

.pc-shop-products .product-wrap {
  padding: 0 10px !important;
}

.pc-shop-product-card {
  height: 100% !important;
  border: 1px solid rgba(242, 85, 134, .24) !important;
  border-radius: 22px !important;
  background: linear-gradient(180deg, #fff, #fff7fb) !important;
  box-shadow: 0 20px 48px rgba(86, 51, 68, .09) !important;
  overflow: hidden !important;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease !important;
}

.pc-shop-product-card:hover {
  transform: translateY(-6px) !important;
  border-color: rgba(242, 85, 134, .45) !important;
  box-shadow: 0 28px 68px rgba(242, 85, 134, .16) !important;
}

.pc-shop-product-card .product-media {
  position: relative !important;
  margin: 8px 8px 0 !important;
  border-radius: 18px !important;
  aspect-ratio: 1 / .86 !important;
  background: linear-gradient(135deg, #fff3f8, #fff) !important;
  overflow: hidden !important;
}

.pc-shop-product-card .product-media > a,
.pc-shop-product-card .product-media img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
}

.pc-shop-product-card .product-media img {
  object-fit: cover !important;
  object-position: center !important;
  border-radius: 18px !important;
  filter: saturate(1.05) contrast(1.02) !important;
  transition: transform .32s ease, filter .32s ease !important;
}

.pc-shop-product-card:hover .product-media img {
  transform: scale(1.055) !important;
  filter: saturate(1.1) contrast(1.04) brightness(1.02) !important;
}

.pc-shop-product-card .product-action-horizontal {
  position: absolute !important;
  left: 16px !important;
  right: 16px !important;
  bottom: 14px !important;
  z-index: 5 !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 44px !important;
  gap: 8px !important;
  width: auto !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  opacity: 0 !important;
  transform: translateY(12px) !important;
  transition: opacity .22s ease, transform .22s ease !important;
}

.pc-shop-product-card:hover .product-action-horizontal {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

@media (hover: none) {
  .pc-shop-product-card .product-action-horizontal {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
}

.tp-card-action {
  display: inline-flex !important;
  height: 44px !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  border-radius: 999px !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  text-decoration: none !important;
  box-shadow: 0 14px 30px rgba(242, 85, 134, .22) !important;
}

.tp-card-action svg {
  width: 17px !important;
  height: 17px !important;
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 2.2 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}

.tp-card-action-primary {
  color: #fff !important;
  background: linear-gradient(135deg, #fb6a9c, #ef3f7d) !important;
}

.tp-card-action-ghost {
  color: #ef3f7d !important;
  background: rgba(255, 255, 255, .96) !important;
}

.pc-shop-product-card .product-details {
  display: flex !important;
  min-height: 188px !important;
  flex-direction: column !important;
  align-items: center !important;
  padding: 18px 16px 20px !important;
  text-align: center !important;
}

.pc-shop-product-card .product-cat a {
  border-radius: 999px !important;
  color: #7b6070 !important;
  background: #fff3f8 !important;
}

.pc-shop-product-card .product-name {
  min-height: 44px !important;
  margin: 0 0 10px !important;
}

.pc-shop-product-card .product-name a {
  color: #3f3040 !important;
  font-size: 15px !important;
  line-height: 1.42 !important;
  font-weight: 850 !important;
}

.pc-shop-product-card .product-pa-wrapper {
  width: 100% !important;
  margin-top: auto !important;
}

.pc-shop-product-card .product-price {
  justify-content: center !important;
}

.pc-shop-product-card .product-price ins {
  color: #ef3f7d !important;
  font-size: 19px !important;
  font-weight: 950 !important;
}

.pc-shop-product-card .product-price del {
  color: #b9a9b1 !important;
  font-size: 12px !important;
  font-weight: 700 !important;
}

@media (max-width: 575px) {
  .tp-card-action span {
    display: none !important;
  }

  .pc-shop-product-card .product-action-horizontal {
    grid-template-columns: 44px 44px !important;
    justify-content: center !important;
  }
}

/* Final override: category first, filter opens with plus */
.pc-shop-main .sticky-sidebar {
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
}

.pc-shop-menu {
  order: 1 !important;
  margin-bottom: 0 !important;
}

.pc-shop-filter-panel {
  order: 2 !important;
  margin-bottom: 0 !important;
}

.pc-filter-accordion {
  display: block;
}

.pc-filter-toggle {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 2px 0;
  color: #0f172a;
  cursor: pointer;
  list-style: none;
}

.pc-filter-toggle::-webkit-details-marker {
  display: none;
}

.pc-filter-toggle span {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.pc-filter-toggle b {
  color: #0f172a;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 850;
}

.pc-filter-toggle small {
  color: #64748b;
  font-size: 12px;
  line-height: 1.25;
  font-weight: 700;
}

.pc-filter-toggle i {
  position: relative;
  display: inline-grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  border: 1px solid rgba(255, 91, 141, .22);
  border-radius: 50%;
  background: linear-gradient(180deg, #ffffff, #fff2f7);
  box-shadow: 0 12px 24px rgba(255, 91, 141, .12);
}

.pc-filter-toggle i:before,
.pc-filter-toggle i:after {
  content: "";
  position: absolute;
  width: 14px;
  height: 2px;
  border-radius: 99px;
  background: #f25586;
  transition: transform .18s ease, opacity .18s ease;
}

.pc-filter-toggle i:after {
  transform: rotate(90deg);
}

.pc-filter-accordion[open] .pc-filter-toggle {
  margin-bottom: 12px;
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(15, 23, 42, .08);
}

.pc-filter-accordion[open] .pc-filter-toggle i:after {
  transform: rotate(90deg) scaleX(.2);
  opacity: 0;
}

.pc-filter-accordion-body {
  display: grid;
  gap: 12px;
}

.pc-filter-accordion-body .pc-filter-head {
  justify-content: flex-end;
  margin: -2px 0 0;
  padding: 0;
  border: 0;
}

.pc-filter-accordion-body .pc-filter-head span {
  display: none !important;
}

.pc-filter-accordion-body .pc-filter-meta {
  margin-bottom: 0;
}

.pc-filter-accordion-body .pc-shop-filter-form {
  gap: 12px;
}

@media (max-width: 991px) {
  .pc-shop-main .sticky-sidebar {
    gap: 12px !important;
  }

  .pc-filter-toggle {
    min-height: 52px;
  }
}
/* Product gallery logo watermark */
.pc-product-main .product-gallery:before {
  content: "" !important;
  position: absolute !important;
  top: 20px !important;
  left: 20px !important;
  z-index: 5 !important;
  width: 118px !important;
  height: 50px !important;
  min-height: 0 !important;
  padding: 0 !important;
  border: 1px solid rgba(255, 255, 255, .72) !important;
  border-radius: 14px !important;
  background: rgba(255, 255, 255, .76) url("../../upload/tatli-patik/tatli-patik-official-logo.png") center / 92px auto no-repeat !important;
  opacity: .88 !important;
  color: transparent !important;
  font-size: 0 !important;
  line-height: 0 !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 34px rgba(244, 95, 141, .14) !important;
}
