@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --ink: #181426;
  --muted: #68647a;
  --line: #eceaf2;
  --soft: #f7f6fb;
  --white: #ffffff;
  --purple: #302161;
  --rose: #d41c5c;
  --teal: #0b7f8c;
  --amber: #c78512;
  --gradient: linear-gradient(135deg, #302161 0%, #7b2668 48%, #d41c5c 100%);
  --shadow: 0 18px 50px rgba(48, 33, 97, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 12% 8%, rgba(212, 28, 92, 0.08), transparent 28%),
    radial-gradient(circle at 88% 22%, rgba(48, 33, 97, 0.08), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #fbfaff 42%, #ffffff 100%);
  letter-spacing: 0;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(48, 33, 97, 0.1);
  backdrop-filter: blur(16px);
  animation: headerDrop 0.65s ease both;
  box-shadow: 0 16px 40px rgba(24, 20, 38, 0.06);
}

.topbar {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 9px 20px;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 22%, rgba(255, 255, 255, 0.12) 56%, transparent 82%),
    var(--gradient);
}

.navbar {
  width: min(1180px, calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  width: 186px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #302b43;
  font-weight: 700;
}

.nav-links a {
  padding: 10px 13px;
  border-radius: 8px;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--purple);
  background: #f1eef9;
  transform: translateY(-1px);
}

.nav-action {
  color: var(--white) !important;
  background: var(--gradient) !important;
  background-size: 180% 180% !important;
  animation: gradientFlow 7s ease infinite;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-action::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='11' width='18' height='11' rx='2'/%3E%3Cpath d='M7 11V7a5 5 0 0 1 10 0v4'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
  opacity: 0.92;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--purple);
}

main {
  overflow: hidden;
}

.banner-showcase {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  margin: 28px auto 18px;
  padding: 10px;
  border: 1px solid rgba(48, 33, 97, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    var(--gradient) border-box;
  box-shadow: 0 22px 70px rgba(48, 33, 97, 0.12);
}

.banner-showcase::before {
  content: "";
  position: absolute;
  inset: 10px;
  pointer-events: none;
  border-radius: 8px;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.34), transparent 34%, rgba(255, 255, 255, 0.2) 62%, transparent);
  z-index: 2;
}

.banner-stage {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
}

.banner-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.018);
  transition: opacity 0.7s ease, transform 1.2s ease;
}

.banner-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.banner-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
}

.banner-dots {
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 3;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.banner-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.banner-dots button.active {
  width: 28px;
  background: #fff;
}

.hero {
  width: min(1180px, calc(100% - 40px));
  min-height: 520px;
  margin: 0 auto 36px;
  padding: 18px 0 0;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  align-items: center;
  gap: 54px;
}

.hero-copy {
  position: relative;
  padding: 54px 0;
  animation: fadeUp 0.8s 0.08s ease both;
}

.hero-copy::before {
  content: "AKTEK";
  position: absolute;
  left: -6px;
  top: 10px;
  z-index: -1;
  color: rgba(48, 33, 97, 0.045);
  font-size: 122px;
  font-weight: 900;
  line-height: 1;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--rose);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
.nav-links,
.btn {
  font-family: "Outfit", "Inter", sans-serif;
}

h1 {
  margin-bottom: 18px;
  color: var(--purple);
  font-size: 54px;
  line-height: 1.04;
}

h2 {
  margin-bottom: 12px;
  font-size: 31px;
  line-height: 1.18;
}

h3 {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.3;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-copy p:not(.eyebrow) {
  max-width: 580px;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  color: var(--white);
  background: var(--gradient);
  box-shadow: 0 12px 26px rgba(212, 28, 92, 0.2);
  background-size: 180% 180%;
  animation: gradientFlow 8s ease infinite;
}

.btn.ghost {
  color: var(--purple);
  border-color: #d8d2e8;
  background: var(--white);
}

.btn.light {
  color: var(--purple);
  background: var(--white);
}

.hero-products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  perspective: 1200px;
}

.hero-card {
  min-height: 208px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(250, 249, 253, 0.98) 100%),
    radial-gradient(circle at 72% 16%, rgba(212, 28, 92, 0.12), transparent 35%);
  box-shadow: var(--shadow);
  animation: cardRise 0.75s ease both;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.hero-card:nth-child(2) {
  animation-delay: 0.12s;
}

.hero-card:nth-child(3) {
  animation-delay: 0.22s;
}

.hero-card:hover {
  transform: translateY(-6px) rotateX(1deg);
  border-color: rgba(212, 28, 92, 0.22);
  box-shadow: 0 24px 62px rgba(48, 33, 97, 0.16);
}

.hero-card:first-child {
  grid-row: span 2;
  min-height: 420px;
}

.hero-card img {
  width: 100%;
  height: 248px;
  object-fit: contain;
}

.hero-card:not(:first-child) img {
  height: 104px;
}

.hero-card span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 9px;
  color: var(--rose);
  font-size: 12px;
  font-weight: 800;
  border-radius: 8px;
  background: #fff1f5;
}

.hero-card strong {
  display: block;
  font-size: 17px;
  line-height: 1.35;
}

.metrics {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 74px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(18px);
  box-shadow: 0 22px 58px rgba(35, 28, 55, 0.09);
}

.metrics div {
  min-height: 112px;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.metrics div:last-child {
  border-right: 0;
}

.metrics strong {
  display: block;
  color: var(--purple);
  font-size: 34px;
}

.metrics span {
  color: var(--muted);
  font-weight: 700;
}

.section,
.page-title,
.catalog-layout,
.about-grid,
.contact-layout,
.product-detail {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 34px 0 82px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading a {
  color: var(--rose);
  font-weight: 800;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.category-card {
  position: relative;
  min-height: 220px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfaff 100%);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  animation: softPop 0.5s ease both;
}

.category-card:hover {
  transform: translateY(-5px);
  border-color: #d6cfe9;
  box-shadow: var(--shadow);
}

.category-card img {
  width: 100%;
  height: 112px;
  object-fit: contain;
  margin-bottom: 12px;
}

.category-card small {
  color: var(--muted);
  font-weight: 700;
}

.feature-band {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 38px;
  color: var(--white);
  border-radius: 8px;
  background: var(--gradient);
  background-size: 180% 180%;
  animation: gradientFlow 9s ease infinite;
}

.feature-band h2,
.feature-band p,
.feature-band .eyebrow {
  color: var(--white);
}

.feature-band p {
  max-width: 680px;
  margin-bottom: 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.product-grid.compact {
  grid-template-columns: repeat(4, 1fr);
}

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 392px;
  position: relative;
  border: 1px solid rgba(48, 33, 97, 0.1);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(180deg, #fff 0%, #fbfaff 100%);
  box-shadow: 0 12px 32px rgba(35, 28, 55, 0.045);
  animation: softPop 0.46s ease both;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.18s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 28, 92, 0.2);
  box-shadow: 0 24px 60px rgba(48, 33, 97, 0.14);
}

.product-card:hover::before {
  opacity: 1;
}

.product-media {
  display: grid;
  place-items: center;
  height: 224px;
  padding: 18px;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.98) 0 34%, rgba(245, 241, 252, 0.9) 35% 100%);
}

.product-media img {
  width: 100%;
  height: 184px;
  object-fit: contain;
  transition: transform 0.28s ease;
}

.product-card:hover .product-media img {
  transform: scale(1.05);
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  padding: 17px;
}

.product-kicker {
  color: var(--rose);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-title {
  min-height: 48px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.42;
}

.product-rating {
  margin-top: auto;
  color: var(--amber);
  font-size: 13px;
  font-weight: 800;
}

.product-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin-top: 4px;
  color: var(--purple);
  font-weight: 800;
  border: 1px solid #ded8ef;
  border-radius: 8px;
}

.page-title {
  position: relative;
  margin-top: 28px;
  padding: 44px;
  border: 1px solid rgba(48, 33, 97, 0.12);
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 18%, rgba(212, 28, 92, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 246, 253, 0.96));
  box-shadow: 0 22px 58px rgba(35, 28, 55, 0.08);
}

.page-title h1 {
  max-width: 840px;
  font-size: 44px;
}

.page-title p:not(.eyebrow) {
  max-width: 760px;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
  padding-top: 28px;
  padding-bottom: 80px;
}

.filters {
  align-self: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfaff 100%);
  box-shadow: 0 18px 44px rgba(35, 28, 55, 0.08);
}

.catalog-content {
  padding: 18px;
  border: 1px solid rgba(48, 33, 97, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 44px rgba(35, 28, 55, 0.055);
}

.search-box,
.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.search-box {
  margin-bottom: 22px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 11px 12px;
  color: var(--ink);
  border: 1px solid #dcd7ea;
  border-radius: 8px;
  background: var(--white);
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(212, 28, 92, 0.12);
}

.filter-title {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 800;
}

.filter-buttons {
  display: grid;
  gap: 8px;
}

.filter-buttons button {
  min-height: 42px;
  padding: 9px 10px;
  color: #3d3751;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaff;
  cursor: pointer;
}

.filter-buttons button.active {
  color: var(--white);
  border-color: transparent;
  background: var(--gradient);
}

.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.catalog-toolbar select {
  width: min(260px, 100%);
}

.empty-state {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(340px, 1fr);
  gap: 48px;
  padding: 58px 0 36px;
  align-items: start;
}

.detail-gallery {
  display: grid;
  gap: 14px;
}

.detail-main-image {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 2 / 3;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 1) 0% 40%, rgba(245, 241, 252, 0.7) 100%);
  box-shadow: 0 8px 32px rgba(48, 33, 97, 0.07);
  overflow: hidden;
  cursor: zoom-in;
}

.detail-main-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.detail-main-image:hover img {
  transform: scale(1.06);
}

.thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.thumbs button {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  width: 100%;
  height: auto;
  padding: 6px;
  border: 2px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.thumbs button:hover {
  border-color: rgba(212, 28, 92, 0.4);
  box-shadow: 0 4px 12px rgba(48, 33, 97, 0.1);
}

.thumbs button.active {
  border-color: var(--rose);
  box-shadow: 0 4px 14px rgba(212, 28, 92, 0.18);
}

.thumbs img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.detail-info {
  align-self: start;
}

.detail-info h1 {
  font-size: 38px;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}

.feature-list,
.variant-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.feature-list li,
.variant-list li {
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.variant-list a {
  color: var(--purple);
  font-weight: 800;
}

.about-grid,
.contact-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-bottom: 84px;
}

.about-grid div,
.contact-info,
.contact-form {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(35, 28, 55, 0.05);
}

.contact-layout {
  grid-template-columns: 0.78fr 1.22fr;
}

.contact-info {
  color: var(--white);
  background: var(--gradient);
}

.contact-info h2,
.contact-info p,
.contact-info a,
.contact-info span {
  color: var(--white);
}

.contact-info a,
.contact-info span {
  display: block;
  margin-top: 14px;
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.footer {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 1fr;
  gap: 32px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 38px 0 48px;
  border-top: 1px solid var(--line);
}

.footer img {
  width: 180px;
  margin-bottom: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.72s ease, transform 0.72s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.product-card.reveal,
.category-card.reveal {
  transition: opacity 0.72s ease, transform 0.72s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.product-card.reveal:not(.is-visible),
.category-card.reveal:not(.is-visible) {
  transform: translateY(24px) scale(0.98);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cardRise {
  from {
    opacity: 0;
    transform: translateY(34px) rotateX(4deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0);
  }
}

@keyframes softPop {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes headerDrop {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gradientFlow {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

.footer strong,
.footer a,
.footer span {
  display: block;
  margin-bottom: 10px;
}

.footer a,
.footer span {
  color: var(--muted);
}

.footer {
  display: block;
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  padding: 48px 0 26px;
  border-top: 1px solid rgba(48, 33, 97, 0.12);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1.45fr) repeat(4, minmax(130px, 0.7fr));
  gap: 30px;
  align-items: start;
}

.footer-brand img {
  width: 180px;
  margin-bottom: 18px;
}

.footer-contact {
  display: grid;
  gap: 8px;
  max-width: 420px;
}

.footer-contact a,
.footer-contact span,
.footer-col a {
  display: block;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.footer-contact a,
.footer-col a {
  transition: color 0.18s ease, transform 0.18s ease;
}

.footer-contact a:hover,
.footer-col a:hover,
.footer-legal-links a:hover {
  color: var(--rose);
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  min-height: 38px;
  margin: 0;
  padding: 0;
  color: var(--purple);
  font-size: 13px;
  font-weight: 800;
  border: 1px solid rgba(48, 33, 97, 0.12);
  border-radius: 999px;
  background: #fff;
}

.footer-social a:hover {
  color: #fff;
  border-color: transparent;
  background: var(--gradient);
}

.footer-social svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-col {
  display: grid;
  gap: 8px;
}

.footer-col strong,
.footer-title-link {
  display: block;
  margin: 0 0 6px;
  color: var(--ink);
  font-family: "Outfit", "Inter", Arial, sans-serif;
  font-size: 16px;
  font-weight: 900;
}

.footer-title-link {
  color: var(--purple);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(48, 33, 97, 0.12);
}

.footer-bottom p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-legal-links a {
  display: inline-block;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 980px) {
  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .footer {
    width: min(100% - 28px, 1280px);
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

.legal-hero {
  width: min(980px, calc(100% - 48px));
  margin: 44px auto 24px;
  padding: 48px;
  text-align: center;
  border: 1px solid rgba(48, 33, 97, 0.12);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 18%, rgba(212, 28, 92, 0.1), transparent 32%),
    linear-gradient(135deg, #ffffff, #f8f4fc);
  box-shadow: 0 22px 58px rgba(35, 28, 55, 0.08);
}

.legal-hero h1 {
  margin: 0 0 14px;
  color: var(--purple);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
}

.legal-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.7;
}

.legal-content {
  width: min(980px, calc(100% - 48px));
  margin: 0 auto 70px;
  display: grid;
  gap: 16px;
}

.legal-card {
  padding: 28px;
  border: 1px solid rgba(48, 33, 97, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 40px rgba(35, 28, 55, 0.06);
}

.legal-card h2 {
  margin: 0 0 10px;
  color: var(--purple);
  font-size: 24px;
}

.legal-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.legal-card a {
  color: var(--rose);
  font-weight: 800;
}

@media (max-width: 640px) {
  .legal-hero,
  .legal-content {
    width: min(100% - 28px, 980px);
  }

  .legal-hero {
    padding: 32px 22px;
  }

  .legal-card {
    padding: 22px;
  }
}

.image-fallback {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: var(--purple);
  font-weight: 900;
  background: #f1eef9;
}

@media (max-width: 980px) {
  .topbar {
    display: none;
  }

  .navbar {
    min-height: 68px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 68px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .hero,
  .product-detail,
  .catalog-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    gap: 18px;
    padding-bottom: 40px;
  }

  .banner-stage {
    min-height: 210px;
  }

  h1 {
    font-size: 40px;
  }

  .category-grid,
  .product-grid,
  .product-grid.compact,
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .metrics div:nth-child(2) {
    border-right: 0;
  }

  .feature-band,
  .section-heading,
  .catalog-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .navbar,
  .hero,
  .metrics,
  .section,
  .page-title,
  .catalog-layout,
  .about-grid,
  .contact-layout,
  .product-detail,
  .feature-band,
  .footer {
    width: min(100% - 28px, 1180px);
  }

  .brand img {
    width: 158px;
  }

  .hero-copy {
    padding: 38px 0 12px;
  }

  .hero-copy::before {
    font-size: 72px;
    top: 18px;
  }

  .banner-showcase {
    margin-top: 16px;
    padding: 7px;
  }

  .banner-stage {
    min-height: 148px;
  }

  .banner-dots {
    bottom: 14px;
  }

  h1,
  .page-title h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 26px;
  }

  .hero-products,
  .category-grid,
  .product-grid,
  .product-grid.compact,
  .about-grid,
  .metrics,
  .footer {
    grid-template-columns: 1fr;
  }

  .hero-card,
  .hero-card:first-child {
    min-height: 0;
  }

  .hero-card img,
  .hero-card:not(:first-child) img {
    height: 180px;
  }

  .metrics div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metrics div:last-child {
    border-bottom: 0;
  }

  .feature-band {
    padding: 28px;
  }

  .page-title {
    padding: 28px;
  }

  .catalog-content {
    padding: 12px;
  }

  .detail-main-image {
    aspect-ratio: 2 / 3;
  }

  .thumbs {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Requested refinements */
.hero-slider-track {
  aspect-ratio: 1872 / 822;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s cubic-bezier(0.77, 0, 0.175, 1);
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-arrow svg {
  width: 24px;
  height: 24px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.premium-section:first-of-type {
  padding-top: 68px;
}

.premium-cats {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.premium-cats .category-card {
  min-height: 0;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: flex-end;
  padding: 0;
  overflow: hidden;
  background: #fff;
}

.premium-cats .category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11, 8, 22, 0.88) 0%, rgba(11, 8, 22, 0.28) 62%, rgba(11, 8, 22, 0.08) 100%);
  z-index: 1;
}

.premium-cats .category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-cats .category-card:hover img {
  transform: scale(1.07);
}

.premium-cats .category-card > span {
  top: 16px;
  right: 16px;
  color: #fff;
  background: linear-gradient(135deg, rgba(48, 33, 97, 0.86), rgba(212, 28, 92, 0.86));
  z-index: 2;
}

.premium-cats .category-card h3,
.premium-cats .category-card small {
  position: relative;
  z-index: 2;
  color: #fff;
}

.premium-cats .category-card h3 {
  width: 100%;
  margin: 0;
  padding: 0 22px 30px;
  font-size: 22px;
}

.premium-cats .category-card small {
  position: absolute;
  left: 22px;
  bottom: 13px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.product-card {
  background: #fff !important;
}

.card-inner {
  transform-style: preserve-3d;
  transition: transform 0.12s ease;
}

.product-card-image {
  background: #fff !important;
}

.product-card-body {
  background: #fff;
}

.product-detail {
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding-top: 48px;
}

.detail-gallery {
  align-self: start;
}

.detail-main-image {
  min-height: 0;
  aspect-ratio: 2 / 3;
  padding: 24px;
  border: 1px solid rgba(48, 33, 97, 0.13);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(35, 28, 55, 0.08);
}

.detail-main-image img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.detail-main-image:hover img {
  transform: scale(1.04);
}

.thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.thumbs button {
  width: 72px;
  height: auto;
  aspect-ratio: 1;
  flex: 0 0 auto;
  border: 2px solid var(--line);
  background: #fff;
}

.thumbs button.active {
  border-color: var(--rose);
}

.detail-info {
  padding-top: 12px;
}

.detail-info h1 {
  color: var(--ink);
  font-size: clamp(24px, 4vw, 40px);
}

.detail-info > p:not(.eyebrow) {
  padding: 20px;
  border: 1px solid rgba(48, 33, 97, 0.12);
  border-radius: 8px;
  background: #fff7fb;
}

.feature-list li,
.variant-list li {
  background: #fff;
}

.about-hero {
  position: relative;
  padding: 118px 0 18px;
  text-align: center;
  overflow: hidden;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(212, 28, 92, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.about-hero-inner {
  position: relative;
  z-index: 1;
}

.about-hero h1 {
  margin: 12px 0 18px;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-hero-sub {
  max-width: 620px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.factory-content {
  margin-top: 28px;
}

.about-section {
  max-width: 1000px;
  margin: 0 auto;
}

.factory-main-frame {
  margin-bottom: 40px;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(35, 28, 55, 0.1);
}

.factory-main-frame img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
}

.about-text-content {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.about-text-content h2 {
  color: var(--purple);
}

.about-text-content p {
  font-size: 17px;
  line-height: 1.8;
}

.about-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.about-gallery-item {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(35, 28, 55, 0.08);
}

.about-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-gallery-item:hover img {
  transform: scale(1.08);
}

.catalog-reader {
  width: min(1280px, calc(100% - 48px));
  margin: 40px auto 84px;
}

.catalog-reader-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 30px;
  border: 1px solid rgba(48, 33, 97, 0.12);
  border-radius: 8px 8px 0 0;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 48px rgba(35, 28, 55, 0.08);
}

.catalog-reader-head h1 {
  margin-bottom: 10px;
  font-size: clamp(32px, 5vw, 54px);
}

.pdf-reader-frame {
  height: min(78vh, 860px);
  min-height: 640px;
  border: 1px solid rgba(48, 33, 97, 0.12);
  border-top: 0;
  border-radius: 0 0 8px 8px;
  background: #fff;
  overflow: hidden;
}

.pdf-reader-frame object,
.pdf-reader-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff;
}

@media (max-width: 900px) {
  .premium-cats,
  .product-detail {
    grid-template-columns: 1fr;
  }

  .catalog-reader-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .pdf-reader-frame {
    min-height: 520px;
  }
}

@media (max-width: 640px) {
  .hero-arrow {
    width: 34px;
    height: 34px;
  }

  .hero-arrow svg {
    width: 18px;
    height: 18px;
  }

  .premium-cats {
    grid-template-columns: 1fr;
  }

  .catalog-reader {
    width: min(100% - 28px, 1280px);
  }
}

/* Aktek premium rebuild */
.navbar,
.home-intro,
.home-factory-spotlight,
.partners-section,
.tech-badge-showcase,
.premium-section,
.showcase-band,
.catalog-hero,
.products-page-layout,
.mobile-cat-chips,
.content-shell,
.footer {
  width: min(1280px, calc(100% - 48px));
}

.navbar {
  min-height: 78px;
}

.brand img {
  width: 178px;
}

.hero-slider {
  position: relative;
  width: min(1280px, calc(100% - 48px));
  margin: 16px auto;
  border-radius: 16px;
  overflow: hidden;
  background: transparent;
  box-shadow: 0 8px 32px rgba(48,33,97,0.13);
}

.hero-slider-track {
  position: relative;
  width: 100%;
}

.hero-slide {
  display: none;
  width: 100%;
  animation: fadeUp 0.72s ease both;
}

.hero-slide.active {
  display: block;
}

.hero-slide img {
  width: 100%;
  height: auto;
  display: block;
  user-select: none;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  padding: 0;
  color: var(--purple);
  border: 1px solid rgba(212, 28, 92, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 34px rgba(24, 20, 38, 0.16);
  backdrop-filter: blur(10px);
  transform: translateY(-50%);
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.hero-arrow:hover {
  color: #fff;
  background: var(--gradient);
  transform: translateY(-50%) scale(1.06);
}

.hero-arrow span {
  font-size: 34px;
  line-height: 1;
}

.hero-arrow--prev {
  left: 28px;
}

.hero-arrow--next {
  right: 28px;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 3;
  display: flex;
  gap: 9px;
  transform: translateX(-50%);
}

.hero-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  transition: width 0.24s ease, background 0.24s ease;
}

.hero-dots button.active {
  width: 30px;
  background: var(--rose);
  border-color: var(--rose);
  box-shadow: 0 0 18px rgba(212, 28, 92, 0.45);
}

.hero-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 4;
  width: 0;
  height: 3px;
  background: var(--gradient);
  box-shadow: 0 0 14px rgba(212, 28, 92, 0.45);
}

.hero-progress.running {
  transition: width 5200ms linear;
}

.home-intro {
  margin: 58px auto 28px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: 28px;
  align-items: stretch;
}

.intro-copy,
.intro-stats,
.catalog-hero,
.products-main,
.products-sidebar,
.content-card {
  border: 1px solid rgba(48, 33, 97, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 58px rgba(35, 28, 55, 0.08);
  backdrop-filter: blur(18px);
}

.intro-copy {
  position: relative;
  overflow: hidden;
  padding: 44px;
}

.intro-copy::before {
  content: "AKTEK";
  position: absolute;
  right: 24px;
  bottom: -22px;
  color: rgba(48, 33, 97, 0.055);
  font-size: 130px;
  font-weight: 900;
  line-height: 0.8;
}

.intro-copy h1 {
  max-width: 720px;
  font-size: clamp(42px, 5vw, 72px);
}

.intro-copy p:not(.eyebrow) {
  max-width: 760px;
  font-size: 18px;
}

.intro-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.intro-stats div {
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intro-stats div:nth-child(2n) {
  border-right: 0;
}

.intro-stats div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.intro-stats strong {
  display: block;
  color: var(--purple);
  font-size: 40px;
}

.intro-stats span {
  color: var(--muted);
  font-weight: 800;
}

.premium-section {
  margin: 0 auto;
}

.home-factory-spotlight {
  position: relative;
  margin: 28px auto 30px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 28px;
  align-items: center;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(48, 33, 97, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.94), rgba(248,244,252,0.92)),
    radial-gradient(circle at 90% 14%, rgba(212,28,92,0.12), transparent 34%);
  box-shadow: 0 24px 66px rgba(35, 28, 55, 0.08);
}

.home-factory-spotlight::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(48,33,97,0.06) 1px, transparent 0);
  background-size: 24px 24px;
  pointer-events: none;
  mask-image: linear-gradient(90deg, transparent, black 18%, black 82%, transparent);
}

.home-factory-media,
.home-factory-copy {
  position: relative;
  z-index: 1;
}

.home-factory-media {
  min-height: 360px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(48, 33, 97, 0.12);
  box-shadow: 0 18px 46px rgba(48, 33, 97, 0.14);
}

.home-factory-media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.home-factory-spotlight:hover .home-factory-media img {
  transform: scale(1.035);
}

.home-factory-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  max-width: calc(100% - 36px);
  padding: 11px 14px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  border-radius: 999px;
  background: rgba(24, 20, 38, 0.72);
  backdrop-filter: blur(12px);
}

.home-factory-badge span {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--rose);
  box-shadow: 0 0 0 5px rgba(212, 28, 92, 0.22);
}

.home-factory-copy {
  padding: 18px 12px 18px 0;
}

.home-factory-copy h2 {
  max-width: 720px;
  margin: 0 0 14px;
  color: var(--purple);
  font-size: clamp(30px, 3.8vw, 52px);
  line-height: 1.05;
}

.home-factory-copy p:not(.eyebrow) {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  font-weight: 600;
}

.home-factory-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0;
}

.home-factory-stats div {
  padding: 18px 16px;
  border: 1px solid rgba(48, 33, 97, 0.1);
  border-radius: 8px;
  background: rgba(255,255,255,0.78);
}

.home-factory-stats strong {
  display: block;
  color: var(--rose);
  font-size: 28px;
  line-height: 1;
}

.home-factory-stats span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.home-factory-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.partners-section {
  position: relative;
  margin: 0 auto 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
  padding: 34px 36px 38px;
  overflow: hidden;
  border: 1px solid rgba(48, 33, 97, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.96), rgba(248,249,252,0.94)),
    radial-gradient(circle at 8% 18%, rgba(212, 28, 92, 0.08), transparent 32%);
  box-shadow: 0 20px 54px rgba(35, 28, 55, 0.07);
}

.partners-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(48,33,97,0.045) 1px, transparent 0);
  background-size: 22px 22px;
  opacity: 0.7;
  pointer-events: none;
  mask-image: linear-gradient(90deg, black, transparent 78%);
}

.partners-copy,
.partners-carousel,
.partners-logo-grid {
  position: relative;
  z-index: 1;
}

.partners-copy h2 {
  max-width: 720px;
  margin: 0;
  color: var(--purple);
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.08;
  text-align: center;
}

.partners-copy p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.partners-carousel {
  width: min(980px, 100%);
  max-width: 100%;
}

.partners-logo-grid {
  display: flex;
  gap: 14px;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
  padding: 8px 48px 10px;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.partners-logo-grid::-webkit-scrollbar {
  display: none;
}

.partners-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 36px;
  height: 46px;
  border: 1px solid rgba(48, 33, 97, 0.12);
  border-radius: 8px;
  background: rgba(255,255,255,0.94);
  color: var(--purple);
  cursor: pointer;
  transform: translateY(-50%);
  box-shadow: 0 14px 34px rgba(35, 28, 55, 0.1);
  transition: opacity 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.partners-arrow--prev {
  left: 0;
}

.partners-arrow--next {
  right: 0;
}

.partners-arrow svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.partners-arrow:hover {
  border-color: rgba(212, 28, 92, 0.32);
  transform: translateY(-50%) scale(1.04);
}

.partners-arrow:disabled {
  opacity: 0.3;
  cursor: default;
  transform: translateY(-50%);
}

.partner-logo-card {
  position: relative;
  flex: 0 0 clamp(210px, 28vw, 286px);
  display: grid;
  place-items: center;
  min-height: 116px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(48, 33, 97, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 26px rgba(35, 28, 55, 0.055);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.partner-logo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 18%, rgba(212, 28, 92, 0.08), transparent 82%);
  opacity: 0;
  transform: translateX(-60%);
  transition: opacity 0.25s ease, transform 0.5s ease;
}

.partner-logo-card img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 210px;
  max-height: 58px;
  object-fit: contain;
  opacity: 0.8;
  transition: transform 0.25s ease, opacity 0.25s ease, filter 0.25s ease;
}

.partner-logo-card--wide img {
  max-width: 250px;
  max-height: 46px;
}

.partner-logo-card:hover {
  transform: translateY(-1px);
  border-color: rgba(212, 28, 92, 0.26);
  background: #fff;
  box-shadow: 0 18px 38px rgba(35, 28, 55, 0.11);
}

.partner-logo-card:hover::after {
  opacity: 1;
  transform: translateX(60%);
}

.partner-logo-card:hover img {
  opacity: 1;
  filter: drop-shadow(0 8px 16px rgba(48, 33, 97, 0.12));
  transform: scale(1.045);
}

.premium-cats {
  grid-template-columns: repeat(4, 1fr);
}

.category-card {
  min-height: 260px;
  background: #fff;
}

.category-card > span {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  padding: 7px 10px;
  color: var(--rose);
  font-size: 12px;
  font-weight: 900;
  border-radius: 999px;
  background: #fff1f6;
}

.category-card img {
  height: 145px;
}

.showcase-band {
  margin: 16px auto 36px;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 28px;
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(48, 33, 97, 0.12);
  border-radius: 8px;
  background:
    radial-gradient(circle at 12% 14%, rgba(212, 28, 92, 0.14), transparent 34%),
    linear-gradient(135deg, #ffffff, #f8f4fc);
  box-shadow: 0 24px 66px rgba(35, 28, 55, 0.08);
}

.showcase-copy h2 {
  color: var(--purple);
  font-size: clamp(28px, 3.7vw, 48px);
}

.showcase-products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.tech-badge-showcase {
  margin: 16px auto 38px;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 28px;
  align-items: stretch;
}

.tech-badge-copy {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(48, 33, 97, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.92), rgba(247,246,251,0.92)),
    radial-gradient(circle at 8% 8%, rgba(11,127,140,0.12), transparent 34%);
  box-shadow: 0 18px 48px rgba(35, 28, 55, 0.07);
}

.tech-badge-copy::after {
  content: "PD";
  position: absolute;
  right: -10px;
  bottom: -34px;
  color: rgba(48, 33, 97, 0.055);
  font-size: 132px;
  font-weight: 900;
  line-height: 1;
}

.tech-badge-copy h2 {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  color: var(--purple);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
}

.tech-badge-copy p:not(.eyebrow) {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.7;
}

.tech-badge-carousel {
  position: relative;
  min-width: 0;
  max-width: 100%;
}

.tech-badge-grid {
  display: flex;
  gap: 12px;
  min-width: 0;
  max-width: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
  padding: 8px 46px 12px;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.tech-badge-grid::-webkit-scrollbar {
  display: none;
}

.tech-badge-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 34px;
  height: 44px;
  border: 1px solid rgba(48, 33, 97, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--purple);
  cursor: pointer;
  transform: translateY(-50%);
  box-shadow: 0 14px 34px rgba(35, 28, 55, 0.1);
  transition: opacity 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.tech-badge-arrow--prev {
  left: 0;
}

.tech-badge-arrow--next {
  right: 0;
}

.tech-badge-arrow svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tech-badge-arrow:hover {
  border-color: rgba(212, 28, 92, 0.32);
  transform: translateY(-50%) scale(1.04);
}

.tech-badge-arrow:disabled {
  opacity: 0.3;
  cursor: default;
  transform: translateY(-50%);
}

.tech-badge-card {
  position: relative;
  flex: 0 0 clamp(150px, 15vw, 170px);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 188px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(48, 33, 97, 0.1);
  border-radius: 8px;
  background: #fff;
  text-align: center;
  scroll-snap-align: start;
  box-shadow: 0 14px 40px rgba(35, 28, 55, 0.06);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.tech-badge-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(48,33,97,0.08), rgba(212,28,92,0.08));
  opacity: 0;
  transition: opacity 0.22s ease;
}

.tech-badge-card:hover {
  transform: translateY(-1px);
  border-color: rgba(212, 28, 92, 0.32);
  box-shadow: 0 22px 56px rgba(48, 33, 97, 0.13);
}

.tech-badge-card:hover::before {
  opacity: 1;
}

.tech-badge-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  margin: 0 auto 16px;
  padding: 10px;
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
}

.tech-badge-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) saturate(100%);
}

.tech-badge-card strong,
.tech-badge-card small {
  position: relative;
  z-index: 1;
  display: block;
}

.tech-badge-card strong {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.2;
}

.tech-badge-card small {
  margin-top: 9px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.45;
}

.products-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.product-card {
  min-height: 0;
  border: 1px solid rgba(48, 33, 97, 0.1);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  cursor: pointer;
  transform-style: preserve-3d;
  box-shadow: 0 12px 36px rgba(35, 28, 55, 0.06);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 28, 92, 0.34);
  box-shadow: 0 18px 58px rgba(48, 33, 97, 0.15);
}

.card-inner {
  display: block;
  color: inherit;
}

.product-card-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  padding: 24px;
  overflow: hidden;
  background: #fff;
}

.product-card-image::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 8px;
  background: radial-gradient(circle, rgba(212, 28, 92, 0.08), rgba(48, 33, 97, 0.045) 58%, transparent 59%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.product-card:hover .product-card-image::before {
  opacity: 1;
}

.product-card-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-card-image img {
  transform: scale(1.08) translateY(-4px);
}

.product-actions {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.product-card:hover .product-actions {
  opacity: 1;
  transform: translateX(0);
}

.product-action-btn {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--purple);
  border: 1px solid rgba(48, 33, 97, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(12px);
}

.product-card-body {
  padding: 18px 20px 20px;
}

.product-category-label {
  margin-bottom: 8px;
  color: var(--rose);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-card-name {
  display: -webkit-box;
  min-height: 43px;
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.42;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.btn-detail-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--purple);
  font-size: 13px;
  font-weight: 800;
  transition: gap 0.22s ease, color 0.22s ease;
}

.product-card:hover .btn-detail-link {
  gap: 12px;
  color: var(--rose);
}

.catalog-hero {
  margin: 34px auto 0;
  padding: 36px 40px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.catalog-hero h1 {
  margin-bottom: 10px;
  font-size: clamp(38px, 5vw, 62px);
}

.breadcrumb {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.catalog-hero-panel {
  min-width: 220px;
  padding: 20px;
  color: #fff;
  border-radius: 8px;
  background: var(--gradient);
  box-shadow: 0 16px 40px rgba(212, 28, 92, 0.18);
}

.catalog-hero-panel strong,
.catalog-hero-panel span {
  display: block;
}

.catalog-hero-panel strong {
  font-size: 30px;
}

.products-page-layout {
  margin: 28px auto 82px;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 26px;
}

.products-sidebar,
.products-main {
  padding: 18px;
}

.products-sidebar {
  align-self: start;
  position: sticky;
  top: 112px;
}

.sidebar-title {
  margin: 8px 0 12px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
}

.sidebar-filter-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar-filter-item,
.category-chip {
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
}

.sidebar-filter-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 45px;
  padding: 11px 12px;
  color: var(--muted);
  border-radius: 8px;
  font-weight: 800;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.sidebar-filter-item em {
  font-style: normal;
  color: var(--rose);
}

.sidebar-filter-item.active,
.sidebar-filter-item:hover,
.category-chip.active,
.category-chip:hover {
  color: #fff;
  border-color: transparent;
  background: var(--gradient);
}

.sidebar-filter-item.active em,
.sidebar-filter-item:hover em {
  color: #fff;
}

.mobile-cat-chips {
  display: none;
  margin: 18px auto 0;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.category-chip {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 800;
  white-space: nowrap;
}

.products-page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.products-count {
  color: var(--ink);
  font-weight: 900;
}

.content-shell {
  margin: 42px auto 84px;
  display: grid;
  gap: 24px;
}

.content-card {
  padding: 34px;
}

.content-card h2 {
  color: var(--purple);
}

.content-card p {
  margin-bottom: 14px;
}

.factory-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.factory-grid img,
.factory-main {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 18px 44px rgba(35, 28, 55, 0.1);
}

.factory-main {
  max-height: 430px;
}

.catalog-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
}

@media (max-width: 1100px) {
  .products-grid-3,
  .showcase-products,
  .tech-badge-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .premium-cats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .home-intro,
  .home-factory-spotlight,
  .partners-section,
  .tech-badge-showcase,
  .showcase-band,
  .products-page-layout,
  .factory-grid,
  .catalog-card {
    grid-template-columns: 1fr;
  }

  .products-sidebar {
    display: none;
  }

  .mobile-cat-chips {
    display: flex;
  }

  .catalog-hero {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .navbar,
  .home-intro,
  .home-factory-spotlight,
  .partners-section,
  .tech-badge-showcase,
  .premium-section,
  .showcase-band,
  .catalog-hero,
  .products-page-layout,
  .mobile-cat-chips,
  .content-shell,
  .footer {
    width: min(100% - 28px, 1280px);
  }

  .brand img {
    width: 146px;
  }

  .hero-arrow {
    width: 34px;
    height: 34px;
  }

  .hero-arrow--prev {
    left: 10px;
  }

  .hero-arrow--next {
    right: 10px;
  }

  .hero-dots {
    bottom: 10px;
  }

  .home-intro {
    margin-top: 28px;
  }

  .intro-copy,
  .catalog-hero,
  .content-card {
    padding: 26px;
  }

  .intro-stats,
  .products-grid-3,
  .showcase-products,
  .tech-badge-grid,
  .premium-cats {
    grid-template-columns: 1fr;
  }

  .showcase-band {
    padding: 22px;
  }

  .tech-badge-copy {
    padding: 24px;
  }

  .home-factory-spotlight {
    padding: 20px;
  }

  .home-factory-media,
  .home-factory-media img {
    min-height: 260px;
  }

  .home-factory-copy {
    padding: 0;
  }

  .home-factory-stats {
    grid-template-columns: 1fr;
  }

  .partners-section {
    padding: 24px;
  }

  .partners-logo-grid {
    padding: 0 42px;
  }

  .partner-logo-card {
    flex-basis: min(260px, calc(100vw - 126px));
    min-height: 96px;
  }
}

.catalog-pdf-toolbar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 14px;
  padding: 12px;
  border: 1px solid rgba(48, 33, 97, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(35, 28, 55, 0.08);
}

.catalog-pdf-toolbar strong,
.catalog-pdf-toolbar span {
  color: var(--ink);
  font-family: "Outfit", "Inter", Arial, sans-serif;
  font-weight: 800;
}

.pdf-nav-btn {
  min-height: 40px;
  padding: 9px 14px;
  border: 1px solid rgba(48, 33, 97, 0.12);
  border-radius: 8px;
  background: #fff;
  color: var(--purple);
  font-family: "Outfit", "Inter", Arial, sans-serif;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.pdf-nav-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  color: #fff;
  border-color: transparent;
  background: var(--gradient);
  box-shadow: 0 14px 28px rgba(212, 28, 92, 0.2);
}

.pdf-nav-btn:disabled {
  opacity: 0.42;
  cursor: default;
}

.pdf-reader-frame {
  position: relative;
  max-width: 100%;
  overflow: auto;
}

.pdf-side-nav {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: none;
  place-items: center;
  width: 52px;
  height: 52px;
  padding: 0;
  color: var(--purple);
  border: 1px solid rgba(48, 33, 97, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 34px rgba(35, 28, 55, 0.16);
  cursor: pointer;
  backdrop-filter: blur(12px);
  transform: translateY(-50%);
  transition: transform 0.2s ease, color 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.pdf-reader-frame.is-pdfjs-ready .pdf-side-nav {
  display: grid;
}

.pdf-side-nav--prev {
  left: 18px;
}

.pdf-side-nav--next {
  right: 18px;
}

.pdf-side-nav:hover:not(:disabled) {
  color: #fff;
  background: var(--gradient);
  transform: translateY(-50%) scale(1.06);
}

.pdf-side-nav:disabled {
  opacity: 0.34;
  cursor: default;
}

.pdf-side-nav svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pdf-canvas-wrap {
  display: none;
  justify-content: center;
  width: 100%;
  min-width: 0;
  padding: 28px;
  overflow: auto;
  background:
    linear-gradient(135deg, rgba(48, 33, 97, 0.04), rgba(212, 28, 92, 0.04)),
    #f7f7fb;
}

[data-pdf-canvas] {
  display: block;
  max-width: 100%;
  height: auto;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 24px 58px rgba(35, 28, 55, 0.16);
}

.pdf-reader-frame.is-pdfjs-ready .pdf-canvas-wrap {
  display: flex;
}

.pdf-reader-frame.is-pdfjs-ready [data-pdf-fallback] {
  display: none;
}

.pdf-reader-frame.has-fallback .pdf-canvas-wrap {
  display: none;
}

@media (max-width: 640px) {
  .catalog-reader {
    width: min(100% - 24px, 1280px);
    margin-top: 24px;
    margin-bottom: 56px;
  }

  .catalog-reader-head {
    gap: 18px;
    padding: 20px;
  }

  .catalog-reader-head .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .catalog-pdf-toolbar {
    display: grid;
    grid-template-columns: minmax(96px, 1fr) auto minmax(96px, 1fr);
    align-items: stretch;
    justify-content: stretch;
    gap: 8px;
  }

  .pdf-nav-btn {
    width: 100%;
    min-width: 0;
    padding-inline: 8px;
  }

  .catalog-pdf-toolbar strong,
  .catalog-pdf-toolbar span {
    display: grid;
    min-height: 40px;
    place-items: center;
    text-align: center;
    white-space: nowrap;
  }

  .pdf-reader-frame {
    min-height: 460px;
    height: min(72vh, 620px);
  }

  .pdf-reader-frame.is-pdfjs-ready {
    height: auto;
    min-height: 0;
  }

  .pdf-canvas-wrap {
    padding: 12px;
  }

  .pdf-side-nav {
    width: 40px;
    height: 40px;
  }

  .pdf-side-nav--prev {
    left: 8px;
  }

  .pdf-side-nav--next {
    right: 8px;
  }
}

/* Final page polish overrides */
.hero-slider-track {
  aspect-ratio: 1872 / 822;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide.active {
  display: block;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-arrow svg {
  margin: auto;
}

.premium-cats {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-card,
.product-card-image,
.product-card-body,
.card-inner {
  background-color: #fff;
}

@media (max-width: 760px) {
  .premium-cats {
    grid-template-columns: 1fr;
  }
}

/* InTouch-aligned refinements */
body {
  font-family: "Inter", sans-serif;
  font-weight: 400;
}

h1,
h2,
h3,
h4,
.nav-links,
.btn,
.product-card-name,
.btn-detail-link,
.product-category-label,
.eyebrow {
  font-family: "Outfit", sans-serif;
}

.topbar,
.nav-links,
.btn,
.nav-action,
.eyebrow,
.section-kicker,
.sidebar-filter-item,
.category-chip,
.pdf-nav-btn {
  font-weight: 600;
}

h1,
.about-hero h1,
.catalog-reader-head h1 {
  font-weight: 700;
}

h2,
.premium-heading h2,
.showcase-copy h2,
.content-card h2,
.about-text-content h2 {
  font-weight: 700;
}

h3,
.product-card-name,
.category-card h3 {
  font-weight: 700;
}

p,
.about-text-content p,
.about-hero-sub,
.catalog-reader-head p {
  font-weight: 400;
}

.product-card {
  position: relative;
  border: 1px solid rgba(48, 33, 97, 0.12);
  background: #fff;
  overflow: hidden;
  cursor: pointer;
  transform-style: preserve-3d;
  box-shadow: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: none;
  border-color: rgba(212, 28, 92, 0.34);
  box-shadow: 0 12px 48px rgba(212, 28, 92, 0.15), 0 2px 8px rgba(0, 0, 0, 0.08);
}

.product-card .card-inner {
  display: block;
  color: inherit;
  text-decoration: none;
  transform-style: preserve-3d;
  transition: transform 0.1s ease;
}

.product-card-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  padding: 24px;
  overflow: hidden;
  background: #fff !important;
}

.product-card-image::before,
.product-card:hover .product-card-image::before {
  content: none !important;
  display: none !important;
  opacity: 0 !important;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-card-image img {
  transform: scale(1.08) translateY(-4px);
}

.product-card-body {
  padding: 18px 20px 20px;
  background: #fff;
}

.product-category-label {
  margin-bottom: 8px;
  color: var(--rose);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-card-name {
  min-height: 42px;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}

.btn-detail-link {
  gap: 6px;
  color: var(--rose);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 0;
}

.product-card:hover .btn-detail-link {
  gap: 10px;
  color: var(--purple);
}

.product-action-btn {
  color: var(--muted);
  border-color: rgba(48, 33, 97, 0.12);
  background: rgba(255, 255, 255, 0.82);
}

.product-action-btn:hover {
  color: #fff;
  border-color: transparent;
  background: var(--gradient);
}

.catalog-hero h1 {
  font-size: clamp(22px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.12;
}

.catalog-hero-panel strong {
  font-weight: 700;
}

.products-count,
.search-box span,
.sidebar-title,
.sidebar-filter-item,
.sidebar-filter-item em,
.category-chip {
  font-weight: 600;
}

.products-page-header select,
.search-box input {
  font-weight: 400;
}

.factory-content .about-section {
  width: 100%;
  max-width: 1120px;
}

.about-gallery-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 24px;
}

.about-gallery-item {
  width: 100%;
  aspect-ratio: 4 / 3;
}

@media (max-width: 900px) {
  .about-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 540px) {
  .about-gallery-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Compact home category and featured rails */
.home-categories {
  padding-top: 44px;
  padding-bottom: 36px;
}

.home-categories .section-heading,
.home-new-products .section-heading,
.featured-section .section-heading {
  margin-bottom: 20px;
}

.home-new-products {
  margin-top: 22px;
  margin-bottom: 34px;
}

.home-new-products-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.home-new-products-grid .product-card-image {
  padding: 16px;
}

.home-new-products-grid .product-card-body {
  padding: 14px 15px 16px;
}

.home-new-products-grid .product-card-name {
  min-height: 42px;
  font-size: 14px;
}

.home-new-products-grid .product-category-label,
.home-new-products-grid .btn-detail-link {
  font-size: 11px;
}

@media (max-width: 1180px) {
  .home-new-products-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .home-new-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .home-new-products-grid {
    grid-template-columns: 1fr;
  }
}

.home-categories .premium-cats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.home-categories .premium-cats .category-card {
  aspect-ratio: 16 / 8.2;
  min-height: 0;
  border-radius: 8px;
}

.home-categories .premium-cats .category-card > span {
  top: 12px;
  right: 12px;
  padding: 6px 9px;
  font-size: 11px;
}

.home-categories .premium-cats .category-card h3 {
  left: 18px;
  right: 18px;
  bottom: 36px;
  font-size: clamp(18px, 2vw, 24px);
}

.home-categories .premium-cats .category-card small {
  left: 18px;
  right: 18px;
  bottom: 16px;
  font-size: 12px;
}

.featured-section {
  padding-top: 42px;
}

.featured-carousel {
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  align-items: center;
  gap: 14px;
}

.featured-carousel-viewport {
  overflow: hidden;
}

.featured-products-row {
  display: flex !important;
  grid-template-columns: none !important;
  gap: 16px;
  overflow-x: auto;
  padding: 4px 2px 20px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.featured-products-row::-webkit-scrollbar {
  display: none;
}

.featured-products-row .product-card {
  flex: 0 0 clamp(208px, 20vw, 250px);
  scroll-snap-align: start;
}

.featured-products-row .product-card-image {
  padding: 18px;
}

.featured-products-row .product-card-body {
  padding: 14px 16px 16px;
}

.featured-products-row .product-card-name {
  min-height: 40px;
  font-size: 14px;
}

.featured-products-row .product-category-label {
  font-size: 10px;
}

.featured-arrow {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--purple);
  border: 1px solid rgba(48, 33, 97, 0.14);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(35, 28, 55, 0.09);
  cursor: pointer;
  transition: transform 0.2s ease, color 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.featured-arrow:hover:not(:disabled) {
  color: #fff;
  background: var(--gradient);
  transform: translateY(-2px);
}

.featured-arrow:disabled {
  opacity: 0.35;
  cursor: default;
}

.featured-arrow svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 900px) {
  .home-categories .premium-cats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .featured-carousel {
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    gap: 10px;
  }

  .featured-arrow {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 620px) {
  .home-categories .premium-cats {
    grid-template-columns: 1fr;
  }

  .featured-carousel {
    grid-template-columns: 1fr 1fr;
  }

  .featured-carousel-viewport {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .featured-arrow {
    grid-row: 2;
    justify-self: center;
  }

  .featured-products-row .product-card {
    flex-basis: 78%;
  }
}

/* Product listing and category shape fixes */
.home-categories .premium-cats .category-card {
  aspect-ratio: 1 / 1;
}

.home-categories .premium-cats .category-card img {
  object-fit: cover;
}

.catalog-hero {
  padding: 20px 0 8px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.catalog-hero-panel {
  display: none;
}

.products-main {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.products-page-header {
  justify-content: flex-end;
  margin-bottom: 16px;
}

.products-count {
  display: none !important;
}

.products-page-header select {
  width: auto;
  min-width: 132px;
  padding: 0 28px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  font-size: 14px;
  box-shadow: none;
  outline: none;
}

.products-page-header select:focus {
  border: 0;
  box-shadow: none;
}

body[data-page="products"] {
  background: #fff;
}

body[data-page="products"] .products-page-layout,
body[data-page="products"] .catalog-hero {
  background: transparent;
}

/* Product detail cleanup */
.product-rating,
.detail-actions {
  display: none !important;
}

.feature-list {
  gap: 8px;
}

.feature-list li {
  padding: 14px 16px;
  border: 1px solid rgba(48, 33, 97, 0.1);
  border-radius: 8px;
  color: var(--ink);
  font-weight: 500;
}

.feature-list li:nth-child(odd) {
  background: #fff;
}

.feature-list li:nth-child(even) {
  background: #fff6f9;
  border-color: rgba(212, 28, 92, 0.12);
}

.variant-groups {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.variant-group p {
  margin: 0 0 9px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.variant-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.variant-option {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 6px 15px;
  border: 2px solid rgba(48, 33, 97, 0.12);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}

.variant-option:hover {
  color: var(--rose);
  border-color: var(--rose);
}

.variant-option.active {
  color: var(--rose);
  border-color: var(--rose);
  background: rgba(212, 28, 92, 0.06);
  font-weight: 700;
}

.variant-option em {
  font-style: normal;
  font-size: 11px;
}

.variant-swatch {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border: 2px solid rgba(0, 0, 0, 0.12);
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

/* ============================================
   VIP UPGRADE — INDEX & İLETİŞİM SAYFALARI
   ============================================ */

/* ── Index: Intro copy upgrade ─────────────── */
.intro-copy {
  background:
    radial-gradient(circle at 90% 10%, rgba(212,28,92,0.1), transparent 35%),
    rgba(255,255,255,0.88) !important;
}

/* Kayan gradient border efekti */
.intro-copy::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 8px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(212,28,92,0.3), rgba(48,33,97,0.15), rgba(212,28,92,0.1));
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

/* Stats kutuları animasyonlu sayaç stili */
.intro-stats strong {
  font-size: 44px !important;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── Index: Showcase band upgrade ──────────── */
.showcase-band {
  background:
    radial-gradient(circle at 8% 14%, rgba(212,28,92,0.12), transparent 30%),
    radial-gradient(circle at 92% 80%, rgba(48,33,97,0.08), transparent 30%),
    linear-gradient(135deg, #ffffff, #f8f4fc) !important;
  position: relative;
  overflow: hidden;
}
.showcase-band::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,28,92,0.12), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

/* ── Index: Category cards upgrade ─────────── */
.home-categories .premium-cats .category-card {
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.4s cubic-bezier(0.4,0,0.2,1),
              border-color 0.4s !important;
}
.home-categories .premium-cats .category-card:hover {
  transform: translateY(-6px) scale(1.02) !important;
  box-shadow: 0 28px 60px rgba(212,28,92,0.22) !important;
  border-color: rgba(212,28,92,0.45) !important;
}
/* Hover'da kategori adı büyüsün */
.home-categories .premium-cats .category-card h3 {
  transition: transform 0.3s ease;
}
.home-categories .premium-cats .category-card:hover h3 {
  transform: translateY(-4px);
}

/* ── Index: Featured products section header ─ */
.featured-section .section-heading h2 {
  position: relative;
}
.featured-section .section-heading h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gradient);
  border-radius: 999px;
  margin: 10px 0 0;
}

/* ── Index: Hero slider – glowing progress bar */
.hero-progress {
  background: linear-gradient(90deg, #302161, #7b2668, #d41c5c) !important;
  box-shadow: 0 0 16px rgba(212,28,92,0.55) !important;
  height: 4px !important;
}

/* ── Index: Hero slider – arrow upgrade ─────── */
.hero-arrow {
  border: 1px solid rgba(212,28,92,0.3) !important;
  box-shadow: 0 8px 32px rgba(24,20,38,0.18), 0 0 0 1px rgba(212,28,92,0.08) !important;
}
.hero-arrow:hover {
  box-shadow: 0 12px 40px rgba(212,28,92,0.35) !important;
}

/* ── Index: Active dot glow ─────────────────── */
.hero-dots button.active {
  box-shadow: 0 0 20px rgba(212,28,92,0.6) !important;
}

/* ── VIP: İletişim Hero ─────────────────────── */
.contact-vip-hero {
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
  text-align: center;
}
.contact-vip-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 20% 50%, rgba(212,28,92,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 60% 70% at 80% 20%, rgba(48,33,97,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 50% 100%, rgba(123,38,104,0.07) 0%, transparent 60%);
  pointer-events: none;
  animation: vip-bg-shift 8s ease-in-out infinite alternate;
}
@keyframes vip-bg-shift {
  0%   { opacity: 0.7; transform: scale(1); }
  100% { opacity: 1;   transform: scale(1.03); }
}
/* Dot grid pattern */
.contact-vip-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(212,28,92,0.07) 1px, transparent 0);
  background-size: 26px 26px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 88% 80% at 50% 50%, black 40%, transparent 100%);
}

/* Floating orbs */
.contact-vip-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(55px);
  pointer-events: none;
  animation: vip-orb-float 6s ease-in-out infinite;
}
.contact-vip-orb-1 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(212,28,92,0.16), transparent 70%);
  top: -80px; left: 8%;
}
.contact-vip-orb-2 {
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(48,33,97,0.14), transparent 70%);
  top: 30%; right: 6%;
  animation-delay: -3s;
}
.contact-vip-orb-3 {
  width: 140px; height: 140px;
  background: radial-gradient(circle, rgba(123,38,104,0.12), transparent 70%);
  bottom: 0; left: 38%;
  animation-delay: -1.5s;
}
@keyframes vip-orb-float {
  0%,100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-18px) scale(1.04); }
}

.contact-vip-hero-inner {
  position: relative;
  z-index: 2;
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

/* Pulsing badge */
.contact-vip-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(212,28,92,0.1);
  border: 1px solid rgba(212,28,92,0.28);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 22px;
  animation: contact-badge-glow 3s ease-in-out infinite;
}
@keyframes contact-badge-glow {
  0%,100% { box-shadow: 0 0 0 0 rgba(212,28,92,0); }
  50%      { box-shadow: 0 0 20px rgba(212,28,92,0.22); }
}
.contact-vip-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--rose);
  animation: dot-vip-blink 1.5s ease-in-out infinite;
}
@keyframes dot-vip-blink {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.4; transform:scale(0.7); }
}

.contact-vip-hero h1 {
  font-size: clamp(38px, 7vw, 68px) !important;
  font-weight: 700;
  line-height: 1.08;
  margin: 0 0 18px;
  letter-spacing: -0.02em;
}
.contact-vip-hero-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 38px;
  line-height: 1.7;
}

/* Quick-link pill butonlar */
.contact-vip-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.contact-vip-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(48,33,97,0.14);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  backdrop-filter: blur(10px);
}
.contact-vip-link:hover {
  border-color: var(--rose);
  color: var(--rose);
  background: rgba(212,28,92,0.05);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,28,92,0.15);
}

/* Glowing bottom line */
.contact-vip-line {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 50px;
  background: linear-gradient(180deg, transparent, var(--rose), transparent);
  animation: vip-line-pulse 2s ease-in-out infinite;
}
@keyframes vip-line-pulse {
  0%,100% { opacity:0.3; height:40px; }
  50%      { opacity:1; height:64px; }
}

/* ── VIP: Stats bar ──────────────────────────── */
.contact-vip-stats {
  background: rgba(255,255,255,0.92);
  border-top: 1px solid rgba(48,33,97,0.1);
  border-bottom: 1px solid rgba(48,33,97,0.1);
  backdrop-filter: blur(16px);
}
.contact-vip-stats-grid {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 10px 0;
}
.contact-vip-stat {
  text-align: center;
  padding: 22px 20px;
  border-right: 1px solid rgba(48,33,97,0.1);
  transition: background 0.3s;
}
.contact-vip-stat:last-child { border-right: none; }
.contact-vip-stat:hover { background: rgba(212,28,92,0.03); }
.contact-vip-stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 5px;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.contact-vip-stat-label {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}
@media (max-width: 640px) {
  .contact-vip-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-vip-stat { border-bottom: 1px solid rgba(48,33,97,0.1); }
  .contact-vip-stat:nth-child(2n) { border-right: none; }
  .contact-vip-stat:nth-last-child(-n+2) { border-bottom: none; }
}

/* ── VIP: İletişim layout upgrade ───────────── */
.contact-vip-layout {
  width: min(1280px, calc(100% - 48px));
  margin: 60px auto 84px;
  display: grid;
  grid-template-columns: 1fr 1.12fr;
  gap: 52px;
  align-items: start;
}
@media (max-width: 900px) {
  .contact-vip-layout { grid-template-columns: 1fr; gap: 36px; }
}

/* VIP Info kartları */
.contact-vip-cards { display: flex; flex-direction: column; gap: 14px; }

.contact-vip-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 26px;
  background: #fff;
  border: 1.5px solid rgba(48,33,97,0.1);
  border-radius: 8px;
  box-shadow: 0 8px 28px rgba(35,28,55,0.06);
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  overflow: hidden;
}
.contact-vip-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--gradient);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  border-radius: 0 2px 2px 0;
}
.contact-vip-card:hover {
  border-color: rgba(212,28,92,0.28);
  box-shadow: 0 14px 44px rgba(212,28,92,0.1);
  transform: translateY(-2px) translateX(4px);
}
.contact-vip-card:hover::before { transform: scaleY(1); }

.contact-vip-card-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 22px;
  transition: transform 0.3s ease;
}
.contact-vip-card:hover .contact-vip-card-icon {
  transform: scale(1.1) rotate(-5deg);
}
.contact-vip-card-body { flex: 1; }
.contact-vip-card-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 5px;
}
.contact-vip-card-value {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  display: block;
  margin-bottom: 3px;
  transition: color 0.2s;
}
a.contact-vip-card-value:hover { color: var(--rose); }
.contact-vip-card-note {
  font-size: 12px;
  color: var(--muted);
}

/* VIP Form card */
.contact-vip-form-card {
  background: #fff;
  border: 1.5px solid rgba(48,33,97,0.12);
  border-radius: 8px;
  padding: 32px 28px;
  box-shadow: 0 12px 36px rgba(35,28,55,0.07);
  margin-top: 6px;
}
.contact-vip-form-title {
  font-family: 'Outfit', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 4px;
}
.contact-vip-form-sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 22px;
}
.contact-vip-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-vip-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 640px) { .contact-vip-form-row { grid-template-columns: 1fr; } }

.contact-vip-form-group { display: flex; flex-direction: column; gap: 5px; }
.contact-vip-form-group label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-vip-form-group input,
.contact-vip-form-group select,
.contact-vip-form-group textarea {
  background: #f9f8fd;
  border: 1.5px solid rgba(48,33,97,0.12);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 14px;
  color: var(--ink);
  outline: none;
  transition: all 0.28s;
  width: 100%;
  resize: none;
  min-height: 44px;
}
.contact-vip-form-group input:focus,
.contact-vip-form-group select:focus,
.contact-vip-form-group textarea:focus {
  border-color: var(--rose);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(212,28,92,0.1);
}
.contact-vip-form-group textarea { min-height: 100px; }

.contact-vip-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}
.contact-vip-form-note {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

/* VIP Map col */
.contact-vip-map-col { display: flex; flex-direction: column; gap: 16px; }

.contact-vip-map-wrap {
  background: #fff;
  border: 1.5px solid rgba(48,33,97,0.12);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 18px 52px rgba(35,28,55,0.09);
  transition: all 0.35s;
}
.contact-vip-map-wrap:hover {
  box-shadow: 0 24px 64px rgba(212,28,92,0.12);
  border-color: rgba(212,28,92,0.25);
}
.contact-vip-map-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  border-bottom: 1px solid rgba(48,33,97,0.08);
  background: linear-gradient(135deg, rgba(212,28,92,0.03), transparent);
}
.contact-vip-map-title {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}
.contact-vip-map-live {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  color: #16a34a;
}
.contact-vip-live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #16a34a;
  animation: dot-vip-blink 1.5s ease-in-out infinite;
}
.contact-vip-map-frame {
  width: 100%;
  height: 320px;
}
.contact-vip-map-frame iframe {
  width: 100%; height: 100%;
  display: block; border: 0;
}
.contact-vip-map-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 14px;
  text-decoration: none;
}

/* Social links row */
.contact-vip-social {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.contact-vip-social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 10px;
  background: #fff;
  border: 1.5px solid rgba(48,33,97,0.1);
  border-radius: 8px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  transition: all 0.28s;
  text-align: center;
}
.contact-vip-social-card:hover {
  border-color: var(--rose);
  color: var(--rose);
  background: rgba(212,28,92,0.04);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(212,28,92,0.12);
}
.contact-vip-social-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
}

.contact-vip-social-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 640px) {
  .contact-vip-hero { padding: 100px 0 60px; }
}

/* Card entrance animations (CSS-only, no JS dependency) */
.contact-vip-card,
.contact-vip-form-card,
.contact-vip-map-col {
  animation: vip-card-in 0.6s ease both;
}
@keyframes vip-card-in {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================
   VIP — HAKKIMIZDA SAYFASI
   ============================================ */

/* Hero */
.about-vip-hero {
  position: relative;
  padding: 130px 0 90px;
  overflow: hidden;
  text-align: center;
}
.about-vip-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 15% 50%, rgba(48,33,97,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 60% 70% at 85% 20%, rgba(212,28,92,0.09) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 50% 100%, rgba(123,38,104,0.07) 0%, transparent 60%);
  pointer-events: none;
  animation: vip-bg-shift 9s ease-in-out infinite alternate;
}
.about-vip-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(48,33,97,0.06) 1px, transparent 0);
  background-size: 28px 28px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 90% 85% at 50% 50%, black 35%, transparent 100%);
}
.about-vip-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  animation: vip-orb-float 7s ease-in-out infinite;
}
.about-vip-orb-1 { width:300px;height:300px; background:radial-gradient(circle,rgba(48,33,97,0.16),transparent 70%); top:-90px;left:6%; }
.about-vip-orb-2 { width:200px;height:200px; background:radial-gradient(circle,rgba(212,28,92,0.14),transparent 70%); top:25%;right:5%; animation-delay:-3.5s; }
.about-vip-orb-3 { width:150px;height:150px; background:radial-gradient(circle,rgba(123,38,104,0.11),transparent 70%); bottom:0;left:40%; animation-delay:-1.8s; }

.about-vip-hero-inner {
  position: relative;
  z-index: 2;
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}
.about-vip-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(48,33,97,0.1);
  border: 1px solid rgba(48,33,97,0.25);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 22px;
}
.about-vip-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--purple);
  animation: dot-vip-blink 1.5s ease-in-out infinite;
}
.about-vip-hero h1 {
  font-size: clamp(38px, 7vw, 68px) !important;
  font-weight: 700;
  line-height: 1.08;
  margin: 0 0 18px;
  letter-spacing: -0.02em;
  color: var(--purple);
}
.about-vip-hero-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 38px;
  line-height: 1.7;
}
.about-vip-line {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 50px;
  background: linear-gradient(180deg, transparent, var(--purple), transparent);
  animation: vip-line-pulse 2s ease-in-out infinite;
}

/* Metrics strip */
.about-vip-metrics {
  background: rgba(255,255,255,0.92);
  border-top: 1px solid rgba(48,33,97,0.1);
  border-bottom: 1px solid rgba(48,33,97,0.1);
  backdrop-filter: blur(16px);
}
.about-vip-metrics-grid {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.about-vip-metric {
  text-align: center;
  padding: 24px 20px;
  border-right: 1px solid rgba(48,33,97,0.1);
  transition: background 0.3s;
}
.about-vip-metric:last-child { border-right: none; }
.about-vip-metric:hover { background: rgba(48,33,97,0.03); }
.about-vip-metric-num {
  font-family: 'Outfit', sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 5px;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.about-vip-metric-label { font-size: 13px; color: var(--muted); font-weight: 500; }
@media (max-width: 640px) {
  .about-vip-metrics-grid { grid-template-columns: repeat(2,1fr); }
  .about-vip-metric { border-bottom: 1px solid rgba(48,33,97,0.1); }
  .about-vip-metric:nth-child(2n) { border-right: none; }
  .about-vip-metric:nth-last-child(-n+2) { border-bottom: none; }
}

/* Content cards */
.about-vip-content {
  width: min(1280px, calc(100% - 48px));
  margin: 64px auto 84px;
  display: grid;
  gap: 24px;
}
.about-vip-card {
  position: relative;
  background: #fff;
  border: 1.5px solid rgba(48,33,97,0.1);
  border-radius: 12px;
  padding: 40px 44px;
  overflow: hidden;
  transition: all 0.35s;
  animation: vip-card-in 0.6s ease both;
}
.about-vip-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  border-radius: 12px 12px 0 0;
}
.about-vip-card:hover {
  border-color: rgba(212,28,92,0.22);
  box-shadow: 0 20px 56px rgba(48,33,97,0.1);
  transform: translateY(-3px);
}
.about-vip-card:hover::before { transform: scaleX(1); }

/* Watermark number */
.about-vip-card-num {
  position: absolute;
  right: 32px;
  top: 20px;
  font-family: 'Outfit', sans-serif;
  font-size: 80px;
  font-weight: 900;
  color: rgba(48,33,97,0.05);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}
.about-vip-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg,rgba(48,33,97,0.1),rgba(212,28,92,0.08));
  font-size: 24px;
  margin-bottom: 18px;
}
.about-vip-card h2 {
  color: var(--purple);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 14px;
}
.about-vip-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 12px;
}
.about-vip-card p:last-child { margin-bottom: 0; }

/* Timeline band */
.about-vip-timeline {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: #fff;
  border: 1.5px solid rgba(48,33,97,0.1);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(48,33,97,0.08);
}
.about-vip-timeline-item {
  padding: 28px 24px;
  border-right: 1px solid rgba(48,33,97,0.1);
  text-align: center;
  transition: background 0.3s;
  position: relative;
}
.about-vip-timeline-item:last-child { border-right: none; }
.about-vip-timeline-item:hover { background: rgba(48,33,97,0.02); }
.about-vip-timeline-item::after {
  content: '→';
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(212,28,92,0.35);
  font-size: 16px;
  z-index: 1;
}
.about-vip-timeline-item:last-child::after { display:none; }
.about-vip-timeline-year {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 6px;
}
.about-vip-timeline-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}
@media (max-width: 900px) {
  .about-vip-timeline { grid-template-columns: repeat(2,1fr); }
  .about-vip-timeline-item:nth-child(2n) { border-right: none; }
  .about-vip-timeline-item:nth-child(-n+2) { border-bottom: 1px solid rgba(48,33,97,0.1); }
  .about-vip-timeline-item::after { display:none; }
}
@media (max-width: 480px) {
  .about-vip-timeline { grid-template-columns: 1fr; }
  .about-vip-timeline-item { border-right: none; border-bottom: 1px solid rgba(48,33,97,0.1); }
  .about-vip-timeline-item:last-child { border-bottom: none; }
}

/* CTA band */
.about-vip-cta {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 44px 48px;
  border-radius: 16px;
  background: var(--gradient);
  background-size: 200% 200%;
  animation: gradientFlow 10s ease infinite;
  text-align: left;
  position: relative;
  overflow: hidden;
}
.about-vip-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(255,255,255,0.1), transparent);
  pointer-events: none;
}
.about-vip-cta::after {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.about-vip-cta-copy,
.about-vip-cta-btns {
  position: relative;
  z-index: 1;
}
.about-vip-cta h2 { color: #fff; font-size: 28px; font-weight: 700; margin-bottom: 8px; }
.about-vip-cta p  { color: rgba(255,255,255,0.82); font-size: 15px; margin: 0; max-width: 640px; }
.about-vip-cta-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.about-vip-cta .btn {
  background: rgba(255,255,255,0.18);
  border: 1.5px solid rgba(255,255,255,0.4);
  color: #fff;
  backdrop-filter: blur(10px);
}
.about-vip-cta .btn:hover {
  background: rgba(255,255,255,0.28);
  transform: translateY(-2px);
}
.about-vip-cta .btn.solid {
  background: #fff;
  color: var(--purple);
  border-color: transparent;
}
.about-vip-cta .btn.solid:hover { background: rgba(255,255,255,0.92); }
@media (max-width: 640px) {
  .about-vip-cta {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 36px 28px;
  }
  .about-vip-cta h2 { font-size: 24px; }
  .about-vip-cta-btns { justify-content: flex-start; }
}

/* ============================================
   VIP — ÜRÜNLER SAYFASI
   ============================================ */

/* Ürünler hero */
.products-vip-hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 60px;
}
.products-vip-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 0% 50%, rgba(212,28,92,0.08), transparent 55%),
    radial-gradient(ellipse 50% 70% at 100% 30%, rgba(48,33,97,0.07), transparent 55%);
  pointer-events: none;
}
.products-vip-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(212,28,92,0.06) 1px, transparent 0);
  background-size: 26px 26px;
  pointer-events: none;
  mask-image: linear-gradient(180deg, transparent 0%, black 30%, black 70%, transparent 100%);
}
.products-vip-hero-inner {
  position: relative;
  z-index: 1;
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
}
@media (max-width: 760px) {
  .products-vip-hero-inner { grid-template-columns: 1fr; }
}
.products-vip-hero-copy { }
.products-vip-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 16px;
  background: rgba(212,28,92,0.09);
  border: 1px solid rgba(212,28,92,0.25);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 16px;
}
.products-vip-badge-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--rose);
  animation: dot-vip-blink 1.5s ease-in-out infinite;
}
.products-vip-hero h1 {
  font-size: clamp(32px, 5vw, 54px) !important;
  color: var(--purple);
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.products-vip-hero p {
  font-size: 16px;
  color: var(--muted);
  max-width: 520px;
  margin: 0;
}

/* Live count panel */
.products-vip-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 22px 28px;
  background: var(--gradient);
  background-size: 200% 200%;
  animation: gradientFlow 8s ease infinite;
  border-radius: 12px;
  color: #fff;
  box-shadow: 0 16px 48px rgba(212,28,92,0.25);
  text-align: center;
}
.products-vip-panel-count {
  font-family: 'Outfit', sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}
.products-vip-panel-label {
  font-size: 13px;
  font-weight: 600;
  opacity: 0.88;
}

/* Search bar upgrade */
.products-vip-search-bar {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto 0;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: #fff;
  border: 1.5px solid rgba(48,33,97,0.12);
  border-top: none;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 12px 32px rgba(48,33,97,0.06);
}
.products-vip-search-icon { color: var(--muted); font-size: 18px; flex-shrink: 0; }
.products-vip-search-input {
  flex: 1;
  border: none !important;
  background: transparent !important;
  outline: none !important;
  box-shadow: none !important;
  font-size: 15px;
  color: var(--ink);
  padding: 0 !important;
  min-height: 0 !important;
}
.products-vip-search-input::placeholder { color: var(--muted); }

/* Products layout upgrade */
.products-vip-layout {
  width: min(1280px, calc(100% - 48px));
  margin: 28px auto 84px;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}
@media (max-width: 900px) {
  .products-vip-layout { grid-template-columns: 1fr; }
}

/* Sidebar upgrade */
.products-vip-sidebar {
  position: sticky;
  top: 96px;
  background: #fff;
  border: 1.5px solid rgba(48,33,97,0.1);
  border-radius: 12px;
  padding: 24px 20px;
  box-shadow: 0 12px 36px rgba(48,33,97,0.06);
}
.products-vip-sidebar-title {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(48,33,97,0.08);
}
@media (max-width: 900px) {
  .products-vip-sidebar { display: none; }
}

/* Mobile chips upgrade */
.products-vip-chips {
  display: none;
  width: min(1280px, calc(100% - 48px));
  margin: 16px auto 0;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}
.products-vip-chips::-webkit-scrollbar { display: none; }
@media (max-width: 900px) { .products-vip-chips { display: flex; } }

/* Main grid area */
.products-vip-main { }
.products-vip-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.products-vip-count {
  font-size: 14px;
  color: var(--muted);
  font-weight: 600;
}
.products-vip-count strong { color: var(--purple); }
.products-vip-sort {
  min-width: 140px;
  padding: 9px 14px;
  background: #fff;
  border: 1.5px solid rgba(48,33,97,0.12);
  border-radius: 8px;
  color: var(--ink);
  font-size: 14px;
  font-family: inherit;
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s;
  width: auto !important;
  box-shadow: none !important;
}
.products-vip-sort:focus { border-color: var(--rose); }

/* Empty state upgrade */
.products-vip-empty {
  grid-column: 1 / -1;
  padding: 60px 24px;
  text-align: center;
  background: #fff;
  border: 1.5px dashed rgba(48,33,97,0.15);
  border-radius: 12px;
}
.products-vip-empty-icon { font-size: 48px; margin-bottom: 14px; }
.products-vip-empty h3 { color: var(--purple); margin-bottom: 8px; }
.products-vip-empty p { color: var(--muted); font-size: 14px; }

/* ============================================
   VIP — FABRİKAMIZ SAYFASI
   ============================================ */

/* Hero */
.factory-vip-hero {
  position: relative;
  padding: 130px 0 100px;
  overflow: hidden;
  text-align: center;
}
.factory-vip-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 80% at 10% 50%, rgba(48,33,97,0.11) 0%, transparent 58%),
    radial-gradient(ellipse 55% 70% at 90% 20%, rgba(212,28,92,0.09) 0%, transparent 58%),
    radial-gradient(ellipse 45% 55% at 50% 110%, rgba(123,38,104,0.07) 0%, transparent 55%);
  pointer-events: none;
  animation: vip-bg-shift 9s ease-in-out infinite alternate;
}
.factory-vip-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(48,33,97,0.055) 1px, transparent 0);
  background-size: 28px 28px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 90% 85% at 50% 50%, black 30%, transparent 100%);
}
.factory-vip-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(62px);
  pointer-events: none;
  animation: vip-orb-float 7s ease-in-out infinite;
}
.factory-vip-orb-1 { width:320px;height:320px;background:radial-gradient(circle,rgba(48,33,97,0.15),transparent 70%);top:-100px;left:4%; }
.factory-vip-orb-2 { width:210px;height:210px;background:radial-gradient(circle,rgba(212,28,92,0.13),transparent 70%);top:22%;right:4%;animation-delay:-3.5s; }
.factory-vip-orb-3 { width:160px;height:160px;background:radial-gradient(circle,rgba(123,38,104,0.10),transparent 70%);bottom:0;left:42%;animation-delay:-1.8s; }

.factory-vip-hero-inner {
  position: relative;
  z-index: 2;
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}
.factory-vip-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(48,33,97,0.1);
  border: 1px solid rgba(48,33,97,0.26);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 22px;
}
.factory-vip-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--purple);
  animation: dot-vip-blink 1.5s ease-in-out infinite;
}
.factory-vip-hero h1 {
  font-size: clamp(38px, 7vw, 70px) !important;
  font-weight: 700;
  line-height: 1.07;
  margin: 0 0 18px;
  letter-spacing: -0.02em;
}
.factory-vip-hero-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 38px;
  line-height: 1.7;
}
.factory-vip-hero-line {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 55px;
  background: linear-gradient(180deg, transparent, var(--purple), transparent);
  animation: vip-line-pulse 2s ease-in-out infinite;
}

/* Metrics */
.factory-vip-metrics {
  background: rgba(255,255,255,0.92);
  border-top: 1px solid rgba(48,33,97,0.1);
  border-bottom: 1px solid rgba(48,33,97,0.1);
  backdrop-filter: blur(16px);
}
.factory-vip-metrics-grid {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.factory-vip-metric {
  text-align: center;
  padding: 24px 16px;
  border-right: 1px solid rgba(48,33,97,0.1);
  transition: background 0.3s;
}
.factory-vip-metric:last-child { border-right: none; }
.factory-vip-metric:hover { background: rgba(48,33,97,0.025); }
.factory-vip-metric-num {
  font-family: 'Outfit', sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 4px;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.factory-vip-metric-label { font-size: 13px; color: var(--muted); font-weight: 500; }
@media (max-width: 640px) {
  .factory-vip-metrics-grid { grid-template-columns: repeat(2,1fr); }
  .factory-vip-metric { border-bottom: 1px solid rgba(48,33,97,0.1); }
  .factory-vip-metric:nth-child(2n) { border-right: none; }
  .factory-vip-metric:nth-last-child(-n+2) { border-bottom: none; }
}

/* Main image showcase */
.factory-vip-main {
  width: min(1280px, calc(100% - 48px));
  margin: 64px auto 0;
}
.factory-vip-main-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 72px rgba(48,33,97,0.14), 0 2px 8px rgba(0,0,0,0.06);
  border: 1.5px solid rgba(48,33,97,0.1);
  transition: box-shadow 0.4s, transform 0.4s;
}
.factory-vip-main-frame:hover {
  box-shadow: 0 32px 88px rgba(212,28,92,0.16), 0 4px 16px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}
.factory-vip-main-frame img {
  width: 100%;
  max-height: 540px;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.factory-vip-main-frame:hover img { transform: scale(1.03); }

/* Floating label over image */
.factory-vip-main-label {
  position: absolute;
  bottom: 22px;
  left: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(48,33,97,0.12);
  border-radius: 999px;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--purple);
  box-shadow: 0 8px 24px rgba(48,33,97,0.14);
}
.factory-vip-main-label-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #16a34a;
  animation: dot-vip-blink 1.5s ease-in-out infinite;
}

/* Content block */
.factory-vip-content {
  width: min(1280px, calc(100% - 48px));
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
@media (max-width: 860px) { .factory-vip-content { grid-template-columns: 1fr; } }

.factory-vip-info {
  background: #fff;
  border: 1.5px solid rgba(48,33,97,0.1);
  border-radius: 12px;
  padding: 36px 36px 36px 44px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s;
  animation: vip-card-in 0.6s ease both;
}
.factory-vip-info::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--gradient);
  border-radius: 2px 0 0 2px;
}
.factory-vip-info:hover {
  border-color: rgba(212,28,92,0.22);
  box-shadow: 0 16px 48px rgba(48,33,97,0.09);
  transform: translateY(-2px);
}
.factory-vip-info h2 {
  color: var(--purple);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
}
.factory-vip-info p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 12px;
}
.factory-vip-info p:last-child { margin-bottom: 0; }
.factory-vip-info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg,rgba(48,33,97,0.1),rgba(212,28,92,0.08));
  font-size: 22px;
  margin-bottom: 16px;
}

/* Feature badges */
.factory-vip-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.factory-vip-feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: rgba(48,33,97,0.06);
  border: 1px solid rgba(48,33,97,0.12);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: var(--purple);
  transition: all 0.25s;
}
.factory-vip-feature-tag:hover {
  background: var(--gradient);
  border-color: transparent;
  color: #fff;
}

/* Gallery */
.factory-vip-gallery {
  width: min(1280px, calc(100% - 48px));
  margin: 56px auto 80px;
}
.factory-vip-gallery-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}
.factory-vip-gallery-head h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--purple);
  margin: 0;
}
.factory-vip-gallery-head h2::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--gradient);
  border-radius: 999px;
  margin-top: 8px;
}
.factory-vip-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 860px) { .factory-vip-gallery-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 500px)  { .factory-vip-gallery-grid { grid-template-columns: 1fr; } }

.factory-vip-gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 10px;
  border: 1.5px solid rgba(48,33,97,0.1);
  background: #f9f8fd;
  box-shadow: 0 8px 28px rgba(48,33,97,0.07);
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}
.factory-vip-gallery-item:hover {
  border-color: rgba(212,28,92,0.3);
  box-shadow: 0 20px 56px rgba(212,28,92,0.15);
  transform: translateY(-5px) scale(1.01);
}
.factory-vip-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.factory-vip-gallery-item:hover img { transform: scale(1.08); }
.factory-vip-gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(48,33,97,0.5) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.3s;
}
.factory-vip-gallery-item:hover .factory-vip-gallery-item-overlay { opacity: 1; }

/* CTA */
.factory-vip-cta {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto 80px;
  padding: 54px 48px;
  border-radius: 16px;
  background: var(--gradient);
  background-size: 200% 200%;
  animation: gradientFlow 10s ease infinite;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 760px) { .factory-vip-cta { grid-template-columns: 1fr; gap: 20px; padding: 36px 28px; } }
.factory-vip-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 100% 50%, rgba(255,255,255,0.1), transparent);
  pointer-events: none;
}
.factory-vip-cta::after {
  content: '';
  position: absolute;
  bottom: -70px; right: -70px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  pointer-events: none;
}
.factory-vip-cta-copy,
.factory-vip-cta-btns {
  position: relative;
  z-index: 1;
}
.factory-vip-cta-copy h2 { color:#fff; font-size:28px; font-weight:700; margin-bottom:8px; }
.factory-vip-cta-copy p  { color:rgba(255,255,255,0.82); font-size:15px; margin:0; }
.factory-vip-cta-btns { display:flex; gap:10px; flex-shrink:0; flex-wrap:wrap; }
.factory-vip-cta .btn {
  background: rgba(255,255,255,0.18);
  border: 1.5px solid rgba(255,255,255,0.4);
  color: #fff;
  backdrop-filter: blur(10px);
  white-space: nowrap;
}
.factory-vip-cta .btn:hover { background: rgba(255,255,255,0.28); transform: translateY(-2px); }
.factory-vip-cta .btn.solid { background: #fff; color: var(--purple); border-color: transparent; }
.factory-vip-cta .btn.solid:hover { background: rgba(255,255,255,0.92); }

/* ============================================
   PCAT — YENİ ÜRÜNLER SAYFASI (Kompakt)
   ============================================ */

/* Page header */
.pcat-header {
  position: relative;
  overflow: hidden;
  padding: 100px 0 0;
  border-bottom: 1px solid rgba(48,33,97,0.09);
}
.pcat-header-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 100% at 0% 60%, rgba(48,33,97,0.07), transparent 55%),
    radial-gradient(ellipse 45% 80% at 100% 20%, rgba(212,28,92,0.06), transparent 55%);
  pointer-events: none;
}
.pcat-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(48,33,97,0.045) 1px, transparent 0);
  background-size: 24px 24px;
  pointer-events: none;
  mask-image: linear-gradient(180deg, transparent 0%, black 40%, black 80%, transparent 100%);
}
.pcat-header-inner {
  position: relative;
  z-index: 1;
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 32px;
}
@media (max-width: 640px) {
  .pcat-header-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
}

/* breadcrumb + h1 */
.pcat-header-copy h1 {
  font-size: clamp(30px, 4.5vw, 52px) !important;
  font-weight: 700;
  color: var(--purple);
  margin: 8px 0 20px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

/* Compact search */
.pcat-search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.9);
  border: 1.5px solid rgba(48,33,97,0.14);
  border-radius: 10px;
  padding: 10px 16px;
  max-width: 420px;
  box-shadow: 0 4px 18px rgba(48,33,97,0.07);
  transition: border-color 0.25s, box-shadow 0.25s;
  backdrop-filter: blur(8px);
}
.pcat-search:focus-within {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(212,28,92,0.08), 0 4px 18px rgba(48,33,97,0.07);
}
.pcat-search-ico {
  width: 17px; height: 17px;
  color: var(--muted);
  flex-shrink: 0;
  transition: color 0.2s;
}
.pcat-search:focus-within .pcat-search-ico { color: var(--rose); }
.pcat-search-inp {
  flex: 1;
  border: none !important;
  background: transparent !important;
  outline: none !important;
  box-shadow: none !important;
  font-size: 14px !important;
  color: var(--ink);
  padding: 0 !important;
  min-height: 0 !important;
  font-family: inherit;
}
.pcat-search-inp::placeholder { color: rgba(0,0,0,0.35); font-size: 14px; }
.pcat-search-count {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  white-space: nowrap;
  padding-left: 8px;
  border-left: 1px solid rgba(48,33,97,0.1);
}

/* Right pill */
.pcat-header-pill {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 28px;
  background: var(--gradient);
  background-size: 200% 200%;
  animation: gradientFlow 8s ease infinite;
  border-radius: 14px;
  color: #fff;
  text-align: center;
  box-shadow: 0 12px 36px rgba(212,28,92,0.22);
  min-width: 110px;
}
.pcat-pill-num {
  font-family: 'Outfit', sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 3px;
}
.pcat-pill-lbl {
  font-size: 12px;
  font-weight: 600;
  opacity: 0.85;
  letter-spacing: 0.05em;
}

/* Mobile chips strip */
.pcat-mobile-chips {
  display: none;
  position: relative;
  z-index: 1;
  width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 14px calc((100% - min(1280px, calc(100% - 48px))) / 2 + 0px) 14px;
  padding-left: max(16px, calc((100% - 1280px) / 2 + 24px));
  padding-right: max(16px, calc((100% - 1280px) / 2 + 24px));
  gap: 8px;
  border-top: 1px solid rgba(48,33,97,0.07);
  background: rgba(255,255,255,0.7);
}
.pcat-mobile-chips::-webkit-scrollbar { display: none; }
@media (max-width: 900px) { .pcat-mobile-chips { display: flex; } }

/* Main layout */
.pcat-layout {
  width: min(1280px, calc(100% - 48px));
  margin: 32px auto 80px;
  display: grid;
  grid-template-columns: 220px minmax(0,1fr);
  gap: 32px;
  align-items: start;
}
@media (max-width: 900px) {
  .pcat-layout { grid-template-columns: 1fr; }
  .pcat-sidebar { display: none; }
}

/* Sidebar */
.pcat-sidebar { position: sticky; top: 88px; }
.pcat-sidebar-inner {
  background: #fff;
  border: 1.5px solid rgba(48,33,97,0.1);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(48,33,97,0.06);
}
.pcat-sidebar-section { padding: 18px 16px; }
.pcat-sidebar-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
  padding-left: 4px;
}
.pcat-sidebar-divider {
  height: 1px;
  background: rgba(48,33,97,0.08);
  margin: 0 16px;
}

/* Category list items (override sidebar-filter-item for pcat) */
.pcat-sidebar .sidebar-filter-list,
.pcat-cat-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pcat-sidebar .sidebar-filter-item,
.pcat-cat-list .sidebar-filter-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  padding: 10px 12px;
  border-radius: 9px;
  border: none;
  background: transparent;
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  text-align: left;
  transition: background 0.18s, color 0.18s;
}
.pcat-sidebar .sidebar-filter-item:hover,
.pcat-cat-list .sidebar-filter-item:hover {
  background: rgba(48,33,97,0.06);
  color: var(--purple);
}
.pcat-sidebar .sidebar-filter-item.active,
.pcat-cat-list .sidebar-filter-item.active {
  background: linear-gradient(135deg, rgba(48,33,97,0.1), rgba(212,28,92,0.08));
  color: var(--purple);
  font-weight: 700;
}
.pcat-sidebar .sidebar-filter-item em,
.pcat-cat-list .sidebar-filter-item em {
  font-style: normal;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  background: rgba(48,33,97,0.07);
  border-radius: 999px;
  padding: 2px 8px;
  min-width: 24px;
  text-align: center;
  transition: background 0.18s, color 0.18s;
}
.pcat-sidebar .sidebar-filter-item.active em,
.pcat-cat-list .sidebar-filter-item.active em {
  background: var(--gradient);
  color: #fff;
}

/* Sort select in sidebar */
.pcat-sort-select {
  width: 100%;
  padding: 9px 12px;
  border: 1.5px solid rgba(48,33,97,0.12);
  border-radius: 9px;
  background: rgba(48,33,97,0.03);
  color: var(--ink);
  font-size: 13px;
  font-family: inherit;
  cursor: pointer;
  outline: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23302161' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px;
  padding-right: 32px;
  transition: border-color 0.2s;
}
.pcat-sort-select:focus { border-color: var(--rose); }

/* Products main */
.pcat-main { }

/* Empty state */
.pcat-empty {
  display: block;
  padding: 72px 24px;
  text-align: center;
  background: #fff;
  border: 1.5px dashed rgba(48,33,97,0.15);
  border-radius: 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 2;
}
.pcat-empty span { font-size: 40px; display: block; margin-bottom: 8px; }

/* ============================================
   TRUST BAR (banner altı güven şeridi)
   ============================================ */
.trust-bar {
  background: #fff;
  border-top: 1px solid rgba(48,33,97,0.08);
  border-bottom: 1px solid rgba(48,33,97,0.08);
}
.trust-bar-inner {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}
.trust-item {
  flex: 1 1 180px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 20px;
  transition: background 0.22s;
  cursor: default;
}
.trust-item:hover { background: rgba(48,33,97,0.025); }
.trust-sep {
  width: 1px;
  background: rgba(48,33,97,0.09);
  margin: 14px 0;
  flex-shrink: 0;
}
.trust-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(48,33,97,0.08), rgba(212,28,92,0.07));
  color: var(--purple);
  transition: background 0.22s, color 0.22s;
}
.trust-icon svg { width: 20px; height: 20px; }
.trust-item:hover .trust-icon {
  background: var(--gradient);
  color: #fff;
}
.trust-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.trust-text strong {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--purple);
  line-height: 1.2;
}
.trust-text span {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.45;
}
@media (max-width: 900px) {
  .trust-bar-inner { gap: 0; }
  .trust-sep { display: none; }
  .trust-item { flex: 1 1 calc(50% - 1px); border-bottom: 1px solid rgba(48,33,97,0.08); }
  .trust-item:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 480px) {
  .trust-item { flex: 1 1 100%; }
  .trust-item:last-child { border-bottom: none; }
}

/* ============================================
   KATEGORİLER — Kompakt (home)
   ============================================ */
.home-categories--compact {
  padding-top: 28px !important;
  padding-bottom: 16px !important;
}
.section-heading--compact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  width: min(1280px, calc(100% - 48px));
  margin-left: auto;
  margin-right: auto;
}
.section-heading-h2--sm {
  font-size: 18px !important;
  font-weight: 700;
  color: var(--purple);
  margin: 0 !important;
  letter-spacing: -0.01em;
}
.section-link-sm {
  font-size: 13px;
  font-weight: 600;
  color: var(--rose);
  text-decoration: none;
  transition: opacity 0.2s;
}
.section-link-sm:hover { opacity: 0.7; }

/* Kompakt kategori kartları — kare görsel + altında isim */
.cats--compact {
  grid-template-columns: repeat(8, 1fr) !important;
  gap: 14px !important;
  justify-items: center;
  width: min(1280px, calc(100% - 48px)) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
@media (max-width: 1100px) {
  .cats--compact { grid-template-columns: repeat(4, 1fr) !important; }
}
@media (max-width: 600px) {
  .cats--compact { grid-template-columns: repeat(4, 1fr) !important; gap: 10px !important; }
}
@media (max-width: 400px) {
  .cats--compact { grid-template-columns: repeat(3, 1fr) !important; }
}

/* Kart: flex-column, görsel üstte kare, isim altta */
.cats--compact .category-card {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  gap: 8px !important;
  aspect-ratio: unset !important;
  min-height: unset !important;
  overflow: visible !important;
  width: 100% !important;
  box-shadow: none !important;
}

/* Pseudo overlay kaldır */
.cats--compact .category-card::after { display: none !important; }

/* Kare resim kutusu */
.cats--compact .category-card img {
  position: static !important;
  inset: unset !important;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 1 / 1 !important;
  object-fit: cover !important;
  object-position: center !important;
  border-radius: 12px !important;
  margin: 0 !important;
  display: block !important;
  box-shadow: 0 4px 16px rgba(48,33,97,0.1);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), box-shadow 0.4s !important;
}
.cats--compact .category-card:hover img {
  transform: scale(1.04) translateY(-2px) !important;
  box-shadow: 0 10px 28px rgba(48,33,97,0.18) !important;
}

/* Ürün sayısı badge — resim üstünde değil, gizle */
.cats--compact .category-card > span { display: none !important; }

/* Kategori adı — resmin altında */
.cats--compact .category-card h3 {
  position: static !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 4px !important;
  font-size: 12.5px !important;
  font-weight: 700 !important;
  color: var(--purple) !important;
  line-height: 1.3 !important;
  white-space: normal !important;
}

/* Subtitle gizle */
.cats--compact .category-card small { display: none !important; }

/* HTML hidden attribute'unu koruyan genel kural */
[hidden] { display: none !important; }

/* ============================================
   GALERİ NAVIGASYON OKLARI (urun.php)
   ============================================ */
.detail-main-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.detail-main-wrap .detail-main-image {
  flex: 1;
  min-width: 0;
  aspect-ratio: 2 / 3;
  height: auto;
  min-height: unset;
  overflow: hidden;
  cursor: zoom-in;
}
.detail-main-wrap .detail-main-image img {
  transition: opacity 0.15s ease, transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  will-change: transform;
}

.detail-main-wrap .detail-main-image:hover img {
  transform: scale(1.06) !important;
}

@media (max-width: 900px) {
  .detail-main-wrap .detail-main-image {
    aspect-ratio: 2 / 3;
  }
}

@media (max-width: 560px) {
  .detail-main-wrap .detail-main-image {
    aspect-ratio: 2 / 3;
  }
}

/* Ok butonları */
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(48,33,97,0.14);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  cursor: pointer;
  color: var(--purple);
  box-shadow: 0 4px 16px rgba(48,33,97,0.12);
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.gallery-nav svg { width: 18px; height: 18px; }
.gallery-nav:hover {
  background: var(--gradient);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 6px 24px rgba(212,28,92,0.24);
  transform: translateY(-50%) scale(1.08);
}
.gallery-nav:disabled { opacity: 0.35; pointer-events: none; }
.gallery-nav--prev { left: -20px; }
.gallery-nav--next { right: -20px; }

/* Görsel sayacı */
.gallery-counter {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: rgba(48,33,97,0.65);
  backdrop-filter: blur(6px);
  padding: 3px 12px;
  border-radius: 999px;
  pointer-events: none;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .gallery-nav--prev { left: 6px; }
  .gallery-nav--next { right: 6px; }
  .gallery-nav { width: 34px; height: 34px; }
}

/* ============================================
   İLETİŞİM — HARİTA BÖLÜMİ
   ============================================ */
.contact-maps {
  background: linear-gradient(180deg, #f7f6fb 0%, #fff 100%);
  border-top: 1px solid rgba(48,33,97,0.07);
  padding: 64px 0 80px;
}
.contact-maps-inner {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}
.contact-maps-heading {
  text-align: center;
  margin-bottom: 40px;
}
.contact-maps-heading .eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 8px;
}
.contact-maps-heading h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  color: var(--purple);
  margin: 0;
  letter-spacing: -0.02em;
}

/* İki sütunlu harita grid'i */
.contact-maps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 768px) {
  .contact-maps-grid { grid-template-columns: 1fr; }
}

/* Harita kartı */
.contact-map-card {
  background: #fff;
  border: 1.5px solid rgba(48,33,97,0.1);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(48,33,97,0.07);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.28s, transform 0.28s;
}
.contact-map-card:hover {
  box-shadow: 0 16px 44px rgba(48,33,97,0.13);
  transform: translateY(-3px);
}

/* Badge — tip etiketi */
.contact-map-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  border-bottom: 1px solid rgba(48,33,97,0.07);
}
.contact-map-badge svg { width: 16px; height: 16px; flex-shrink: 0; }
.contact-map-badge--factory {
  background: linear-gradient(135deg, rgba(48,33,97,0.06), rgba(212,28,92,0.04));
  color: var(--purple);
}
.contact-map-badge--office {
  background: linear-gradient(135deg, rgba(212,28,92,0.06), rgba(48,33,97,0.04));
  color: var(--rose);
}

/* iframe çerçevesi */
.contact-map-frame {
  flex: 1;
  min-height: 280px;
  position: relative;
  background: #eee;
}
.contact-map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Alt bilgi şeridi */
.contact-map-info {
  padding: 16px 20px;
  border-top: 1px solid rgba(48,33,97,0.07);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-map-info-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--ink);
  line-height: 1.55;
}
.contact-map-info-row svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--rose);
}
.contact-map-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--purple);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 8px;
  border: 1.5px solid rgba(48,33,97,0.15);
  background: rgba(48,33,97,0.03);
  align-self: flex-start;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.contact-map-link svg { width: 13px; height: 13px; }
.contact-map-link:hover {
  background: var(--gradient);
  border-color: transparent;
  color: #fff;
}

/* ============================================
   ÜRÜN KARTI GÖRSEL ORANLARI — 1:1 KARE
   (intouch.com.tr ile aynı)
   ============================================ */

/* Eski .product-media sistemini de düzelt */
.product-media {
  aspect-ratio: 1 / 1 !important;
  height: auto !important;
  min-height: unset !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 8px !important;
  overflow: hidden !important;
  background: #fff !important;
}

.product-media img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.product-card:hover .product-media img {
  transform: scale(1.08) translateY(-4px) !important;
}

/* Yeni .product-card-image sistemi — intouch.com.tr ile birebir */
.product-card-image {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  aspect-ratio: 1 / 1 !important;
  width: 100% !important;
  height: auto !important;
  min-height: unset !important;
  padding: 24px !important;
  overflow: hidden !important;
  background: #fff !important;
  border-radius: 0 !important;
}

.product-card-image img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-width: 80% !important;
  min-height: 80% !important;
  object-fit: contain !important;
  object-position: center !important;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
  will-change: transform !important;
}

.product-card:hover .product-card-image img {
  transform: scale(1.08) translateY(-4px) !important;
}

@media (max-width: 640px) {
  .products-grid-3,
  .home-new-products-grid,
  .showcase-products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px;
  }

  .product-card-image {
    padding: 14px !important;
  }

  .product-card-body,
  .home-new-products-grid .product-card-body,
  .featured-products-row .product-card-body {
    display: flex;
    flex-direction: column;
    min-height: 126px;
    padding: 12px !important;
  }

  .product-card-name,
  .home-new-products-grid .product-card-name,
  .featured-products-row .product-card-name {
    display: -webkit-box !important;
    min-height: 45px;
    max-height: 45px;
    margin-bottom: 8px;
    font-size: 12px;
    line-height: 1.25;
    overflow: hidden !important;
    overflow-wrap: anywhere;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }

  .product-card-footer {
    margin-top: auto;
  }

  .product-category-label,
  .btn-detail-link {
    font-size: 10px;
  }
}

@media (max-width: 620px) {
  .featured-products-row {
    gap: 12px;
  }

  .featured-products-row .product-card {
    flex-basis: calc((100% - 12px) / 2);
  }
}

/* Home category carousel */
.category-carousel {
  position: relative;
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.category-carousel-viewport {
  overflow: visible;
}

.category-carousel-row.cats--compact {
  display: flex !important;
  grid-template-columns: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 10px 8px 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 8px;
  scrollbar-width: none;
}

.category-carousel-row.cats--compact::-webkit-scrollbar {
  display: none;
}

.category-carousel-row.cats--compact .category-card {
  flex: 0 0 clamp(92px, 11vw, 146px);
  scroll-snap-align: start;
}

.home-categories .category-carousel-row.cats--compact .category-card:hover {
  transform: none !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

.home-categories .category-carousel-row.cats--compact .category-card:hover h3 {
  transform: none !important;
}

.category-arrow {
  position: absolute;
  top: 42%;
  z-index: 5;
  transform: translateY(-50%);
}

.category-arrow:hover:not(:disabled) {
  transform: translateY(calc(-50% - 2px));
}

.category-arrow[data-category-prev] {
  left: -18px;
}

.category-arrow[data-category-next] {
  right: -18px;
}

@media (max-width: 700px) {
  .category-carousel {
    width: min(100% - 24px, 1280px);
  }

  .category-carousel-row.cats--compact .category-card {
    flex-basis: calc((100% - 30px) / 4);
  }

  .category-arrow {
    width: 34px;
    height: 34px;
  }

  .category-arrow[data-category-prev] {
    left: -6px;
  }

  .category-arrow[data-category-next] {
    right: -6px;
  }
}
