@font-face {
  font-family: "FA";
  src: url("assets/fonts/fa-solid-900.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "FAB";
  src: url("assets/fonts/fa-brands-400.woff2") format("woff2");
  font-display: swap;
}

:root {
  --gold: #c87324;
  --gold-dark: #9d4f19;
  --ink: #171923;
  --text: #413b36;
  --muted: #706b67;
  --soft: #f7f4ef;
  --line: #e8ded3;
  --white: #fffdf9;
  --shadow: 0 10px 30px rgba(53, 38, 27, .11);
  --card-radius: 12px;
  --image-radius: 9px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "Arial Narrow", "Roboto Condensed", Arial, sans-serif;
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.fa {
  font-family: "FA";
  font-style: normal;
}

.top-social .fa,
.footer-social .fa,
.hero-social .fa,
.whatsapp .fa,
.whatsapp-button .fa {
  font-family: "FAB";
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  color: var(--white);
  background: linear-gradient(110deg, var(--gold) 0 68%, var(--ink) 68%);
  font-size: 15px;
}

.topbar-inner {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.top-contact,
.top-social,
.footer-social,
.hero-social {
  display: flex;
  align-items: center;
  gap: 18px;
}

.top-contact a,
.top-social a {
  transition: opacity 0.2s ease;
}

.top-contact a:hover,
.top-social a:hover {
  opacity: 0.72;
}

.top-contact .fa {
  margin-right: 6px;
}

.top-social {
  gap: 16px;
}

.nav-shell {
  background: var(--white);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 20;
}

.nav-inner {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand img {
  width: 240px;
  max-height: 82px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.main-nav > a,
.nav-products-link {
  color: #17161a;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

.main-nav > a.active,
.main-nav > a:hover,
.nav-products-link.active,
.nav-products-link:hover {
  color: var(--gold);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
}

.nav-products-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.nav-caret {
  font-size: 11px;
  transition: transform 0.2s ease;
}

.product-submenu {
  position: absolute;
  z-index: 60;
  top: 100%;
  left: 50%;
  display: grid;
  width: 330px;
  padding: 10px;
  border-top: 3px solid var(--gold);
  border-radius: 3px;
  background: var(--white);
  box-shadow: 0 16px 36px rgba(18, 17, 30, 0.18);
  opacity: 0;
  visibility: hidden;
  pointer-events: auto;
  transform: translateX(-50%);
  transition: opacity 0.2s ease, visibility 0s linear 0.2s;
}

.product-submenu a {
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: none;
}

.product-submenu a:last-child {
  border-bottom: 0;
}

.product-submenu a:hover,
.product-submenu a:focus-visible {
  padding-left: 17px;
  color: var(--gold);
  background: var(--soft);
}

.nav-dropdown:hover .product-submenu,
.nav-dropdown:focus-within .product-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%);
  transition-delay: 0s;
}

.nav-dropdown:hover .nav-caret,
.nav-dropdown:focus-within .nav-caret {
  transform: rotate(180deg);
}

.submenu-toggle {
  display: none !important;
}

.product-submenu .submenu-all-link {
  margin-bottom: 4px;
  color: var(--white);
  background: linear-gradient(120deg, var(--gold), var(--gold-dark));
}

.product-submenu .submenu-all-link:hover,
.product-submenu .submenu-all-link:focus-visible {
  color: var(--white);
  background: var(--gold-dark);
}

.region-submenu {
  right: -85px;
  left: auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 720px;
  max-height: min(640px, 72vh);
  overflow-y: auto;
  transform: none;
}

.nav-dropdown:hover .region-submenu,
.nav-dropdown:focus-within .region-submenu {
  transform: none;
}

.region-submenu .region-all-link {
  grid-column: 1 / -1;
  margin-bottom: 4px;
  color: var(--white);
  background: linear-gradient(120deg, var(--gold), var(--gold-dark));
}

.region-submenu .region-all-link:hover,
.region-submenu .region-all-link:focus-visible {
  color: var(--white);
  background: var(--gold-dark);
}

.solid-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  border: 0;
  border-radius: 5px;
  padding: 12px 24px;
  color: var(--white);
  background: var(--gold);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(181, 122, 53, 0.22);
  transition: transform 0.2s ease, background 0.2s ease;
}

.solid-button:hover {
  color: var(--white);
  background: var(--gold-dark);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 4px;
  padding: 9px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
}

.hero {
  padding: 76px 0 84px;
  overflow: hidden;
}

.hero-inner {
  min-height: 430px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 72px;
}

.hero-visual {
  position: relative;
  padding: 30px 28px 30px 44px;
}

.hero-slider {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 320px;
  overflow: hidden;
  border-radius: 12px;
  background: #171425;
  box-shadow: 0 18px 35px rgba(25, 23, 39, .16);
}

.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  object-fit: cover;
  opacity: 0;
  transform: scale(1.045);
  transition: opacity .9s ease, transform 6s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-slider::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(transparent, rgba(10, 9, 20, .3));
}

.hero-dots {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 14px;
  display: flex;
  gap: 7px;
  transform: translateX(-50%);
}

.hero-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 50%;
  background: rgba(255, 255, 255, .42);
  box-shadow: 0 1px 5px rgba(0, 0, 0, .35);
  transition: width .25s ease, border-radius .25s ease, background .25s ease;
  cursor: pointer;
}

.hero-dots button.active {
  width: 24px;
  border-radius: 8px;
  background: #fff;
}

.hero-frame {
  position: absolute;
  z-index: 1;
  inset: 13px 165px 12px 25px;
  border: 5px solid var(--gold);
  border-radius: 12px;
}

.dot-pattern {
  position: absolute;
  left: -5px;
  top: -5px;
  width: 210px;
  height: 405px;
  background-image: radial-gradient(#d6d9df 1.6px, transparent 1.6px);
  background-size: 13px 13px;
}

.experience-seal {
  position: absolute;
  z-index: 3;
  top: 79px;
  right: -48px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, .9);
  background:
    radial-gradient(circle at 32% 25%, rgba(255, 192, 92, .3), transparent 31%),
    linear-gradient(145deg, #d96b17 0%, #b94a0d 52%, #8f3109 100%);
  box-shadow:
    0 18px 38px rgba(78, 39, 5, .26),
    0 0 0 5px var(--white),
    0 0 0 9px #ce5b12;
  isolation: isolate;
}

.experience-seal::before {
  content: "";
  position: absolute;
  inset: 11px;
  z-index: -1;
  border: 2px solid rgba(255, 255, 255, .52);
  border-radius: inherit;
}

.experience-orbit {
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: inherit;
  animation: experience-orbit 22s linear infinite;
}

.experience-orbit i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  margin: -8px 0 0 -7px;
  text-align: center;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  line-height: 16px;
  color: #fff;
  text-shadow: 0 2px 3px rgba(66, 20, 0, .62);
  transform: rotate(calc(var(--i) * 20deg)) translateY(-65px);
}

.experience-spark {
  position: absolute;
  z-index: 4;
  top: 50%;
  width: 3px;
  height: 3px;
  margin-top: -2px;
  border-radius: 50%;
  background: #fff;
  opacity: 0;
  box-shadow:
    -11px -2px #27b8ff,
    -8px -9px #ffe55c,
    0 -12px #fff,
    8px -9px #ff4c9a,
    11px 0 #4de6bd,
    8px 9px #a86cff,
    0 12px #ffe55c,
    -8px 9px #ff6848;
  animation: experience-spark 3.2s ease-out infinite;
}

.experience-spark-left {
  left: 26px;
}

.experience-spark-right {
  right: 26px;
  animation-delay: 1.6s;
}

.experience-core {
  position: absolute;
  z-index: 2;
  inset: 28px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, .88);
  border-radius: inherit;
  background:
    radial-gradient(circle at 33% 23%, rgba(255, 173, 63, .38), transparent 32%),
    linear-gradient(145deg, #29253b 0%, #171425 72%);
  box-shadow:
    inset 0 0 22px rgba(0, 0, 0, .22),
    0 5px 14px rgba(88, 39, 0, .2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.experience-core::after {
  content: "";
  position: absolute;
  top: -35%;
  left: -65%;
  width: 32%;
  height: 170%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .34), transparent);
  transform: rotate(18deg);
  animation: experience-shine 5.5s ease-in-out infinite;
}

.experience-core strong {
  position: relative;
  z-index: 1;
  display: block;
  color: transparent;
  background: linear-gradient(
    180deg,
    #fff9e9 0%,
    #f8d992 28%,
    #d78a32 54%,
    #fff0bd 78%,
    #b95b16 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-stroke: .35px rgba(255, 255, 255, .5);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 41px;
  font-weight: 900;
  font-variant-numeric: lining-nums tabular-nums;
  line-height: .82;
  letter-spacing: -3px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, .32);
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, .25));
  transform: scaleX(.94);
}

.experience-core strong::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 45px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #efb65d 22%, #fff0bc 50%, #efb65d 78%, transparent);
  transform: translateX(-50%);
}

.experience-core strong::after {
  content: "◆";
  position: absolute;
  left: 50%;
  bottom: -12px;
  padding: 0 3px;
  color: #f6c979;
  background: #1b1729;
  font-family: Georgia, serif;
  font-size: 6px;
  line-height: 8px;
  -webkit-text-stroke: 0;
  transform: translateX(-50%);
}

.experience-core b {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
  padding: 3px 8px 3px 11px;
  border: 1px solid rgba(246, 201, 121, .58);
  border-radius: 999px;
  color: #ffe5ad;
  background: linear-gradient(180deg, rgba(255, 195, 92, .19), rgba(116, 50, 10, .12));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .14),
    0 3px 9px rgba(0, 0, 0, .18);
  font-size: 10px;
  letter-spacing: 3px;
  line-height: 1.15;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .55);
}

@keyframes experience-orbit {
  to { transform: rotate(360deg); }
}

@keyframes experience-shine {
  0%, 58% { left: -65%; }
  82%, 100% { left: 135%; }
}

@keyframes experience-spark {
  0%, 10%, 70%, 100% {
    opacity: 0;
    transform: scale(.25) rotate(0);
  }
  22% {
    opacity: 1;
  }
  48% {
    opacity: .85;
    transform: scale(1) rotate(15deg);
  }
  64% {
    opacity: 0;
    transform: scale(1.35) rotate(22deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .experience-orbit,
  .experience-core::after,
  .experience-spark {
    animation: none;
  }
}

.eyebrow,
.kicker {
  color: var(--gold);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 8px 0 14px;
  color: var(--ink);
  font-size: clamp(42px, 5vw, 58px);
  line-height: 1.06;
  letter-spacing: -1px;
}

.hero-copy > p {
  max-width: 575px;
  margin: 0 0 25px;
  color: var(--muted);
  font-size: 17px;
}

.hero-social strong {
  color: #17161a;
  margin-right: 8px;
}

.hero-social a {
  width: 42px;
  height: 42px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--gold);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-social .social-instagram {
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0 5%,
    #fd5949 42%,
    #d6249f 62%,
    #285aeb 92%
  );
  box-shadow: 0 7px 16px rgba(214, 36, 159, 0.24);
}

.hero-social .social-facebook {
  background: #1877f2;
  box-shadow: 0 7px 16px rgba(24, 119, 242, 0.24);
}

.hero-social .social-instagram:hover,
.hero-social .social-facebook:hover {
  color: var(--white);
  transform: translateY(-2px);
}

.section {
  padding: 84px 0;
}

.section-soft {
  background: var(--soft);
}

.section-heading {
  margin-bottom: 42px;
  text-align: center;
}

.section-heading .kicker {
  letter-spacing: 1px;
}

.section-heading h2 {
  margin: 4px 0 0;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.15;
}

.section-heading > p {
  max-width: 760px;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.category-card {
  overflow: hidden;
  background: var(--white);
  border-radius: var(--card-radius);
  box-shadow: var(--shadow);
}

.category-card img {
  width: 100%;
  height: 235px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

.category-card div {
  padding: 21px 22px 24px;
}

.category-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.home-products {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.products-page .product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.products-page .product-card {
  border: 0;
  border-radius: var(--card-radius);
  box-shadow: 0 8px 26px rgba(16, 16, 20, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.products-page .product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 34px rgba(16, 16, 20, 0.15);
}

.products-page .product-image {
  padding: 0;
  overflow: hidden;
}

.products-page .product-image img {
  height: 220px;
  border-radius: 0;
  transition: transform 0.35s ease;
}

.products-page .product-card:hover .product-image img {
  transform: scale(1.035);
}

.products-page .product-card-body {
  align-items: stretch;
  padding: 19px 18px 20px;
  text-align: left;
}

.products-page .product-card h3 {
  min-height: 72px;
  font-size: 16px;
  line-height: 1.48;
}

.products-page .price {
  margin: 10px 0 18px;
  color: var(--gold-dark);
}

.products-page .outline-button {
  width: 100%;
  text-align: center;
}

.product-card {
  background: var(--white);
  border: 1px solid #ededee;
  border-radius: var(--card-radius);
  box-shadow: 0 3px 11px rgba(16, 16, 20, 0.09);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-image {
  display: block;
  padding: 18px 18px 0;
}

.product-image img {
  width: 100%;
  height: 210px;
  border-radius: var(--image-radius);
  object-fit: cover;
}

.product-card-body {
  flex: 1;
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.product-card h3 {
  min-height: 76px;
  margin: 0;
  color: #25242a;
  font-size: 17px;
  line-height: 1.55;
}

.product-card h3 a:hover {
  color: var(--gold);
}

.price {
  margin: 7px 0 20px;
  color: #132249;
  font-size: 22px;
  font-weight: 800;
}

.outline-button {
  margin-top: auto;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--gold);
  border-radius: 5px;
  color: #132249;
  font-size: 13px;
  text-transform: uppercase;
}

.outline-button:hover {
  color: var(--white);
  background: var(--gold);
}

.section-cta {
  margin-top: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  padding: 38px 30px;
  background: var(--white);
  border-radius: var(--card-radius);
  box-shadow: var(--shadow);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--gold);
  transform: rotate(180deg);
}

.service-card h3 {
  margin: 22px 0 10px;
  color: var(--ink);
  font-size: 23px;
}

.service-card p {
  color: var(--muted);
}

.text-link {
  color: var(--gold);
  font-weight: 800;
}

.feature-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-grid article {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 22px;
  background: var(--white);
  border-radius: var(--card-radius);
}

.feature-grid > article > .fa {
  color: var(--gold);
  font-size: 24px;
}

.feature-grid h3 {
  margin: 0 0 5px;
  color: var(--ink);
  font-size: 17px;
}

.feature-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.callout {
  color: var(--white);
  background: var(--gold);
  padding: 56px 0;
}

.callout-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 48px;
}

.callout h2 {
  margin: 0;
  font-size: 33px;
  line-height: 1.2;
}

.callout p {
  margin: 8px 0 0;
}

.callout-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  white-space: nowrap;
  font-size: 19px;
  font-weight: 800;
}

.solid-button.light {
  color: var(--ink);
  background: var(--white);
  box-shadow: none;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 45px rgba(3, 8, 20, 0.13);
}

.blog-card-image {
  display: block;
  overflow: hidden;
}

.blog-card img {
  width: 100%;
  height: 235px;
  object-fit: cover;
  transition: transform 400ms ease;
}

.blog-card:hover img {
  transform: scale(1.035);
}

.blog-card-body {
  padding: 25px;
}

.blog-card h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.35;
}

.post-meta {
  color: var(--muted);
  font-size: 13px;
}

.post-meta .fa:not(:first-child) {
  margin-left: 12px;
}

.blog-card p {
  color: var(--muted);
}

.blog-all-link {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.blog-index-hero,
.blog-page-title {
  min-height: 340px;
}

.blog-index-hero .container,
.blog-page-title .container {
  max-width: 920px;
}

.blog-index-hero p {
  max-width: 720px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.65;
}

.page-kicker {
  display: inline-block;
  margin-bottom: 15px;
  color: #e3b16d;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}

.page-date {
  margin-top: 17px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.blog-index-grid {
  align-items: stretch;
}

.blog-index-grid .blog-card {
  display: flex;
  flex-direction: column;
}

.blog-index-grid .blog-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.blog-index-grid .blog-card .text-link {
  margin-top: auto;
}

.article-section {
  background: #f7f8fa;
}

.article-wrap {
  max-width: 960px;
}

.blog-article {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 5px;
  box-shadow: var(--shadow);
}

.article-cover {
  display: block;
  width: 100%;
  max-height: 540px;
  object-fit: cover;
}

.article-content {
  padding: clamp(30px, 6vw, 70px);
  color: #4c5360;
  font-size: 17px;
  line-height: 1.85;
}

.article-content .article-lead {
  margin-top: 0;
  padding-left: 22px;
  border-left: 4px solid var(--gold);
  color: var(--ink);
  font-size: 21px;
  line-height: 1.65;
}

.article-content h2 {
  margin: 42px 0 14px;
  color: var(--ink);
  font-size: 27px;
  line-height: 1.3;
}

.article-content ul {
  padding-left: 22px;
}

.article-content li {
  margin: 7px 0;
}

.article-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 52px;
  padding: 30px;
  background: #f3ede5;
}

.article-cta h2 {
  max-width: 580px;
  margin: 7px 0 0;
  font-size: 23px;
}

.article-cta .solid-button {
  flex: 0 0 auto;
}

.article-back {
  margin-top: 28px;
}

.page-title {
  min-height: 245px;
  display: grid;
  place-items: center;
  color: var(--white);
  background:
    linear-gradient(rgba(3, 8, 20, 0.72), rgba(3, 8, 20, 0.72)),
    var(--page-bg) center/cover no-repeat;
  text-align: center;
}

.page-title h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(28px, 4.5vw, 38px);
  line-height: 1.2;
  text-transform: uppercase;
}

.content-heading {
  border-bottom: 1px solid var(--line);
  margin-bottom: 20px;
}

.content-heading h2 {
  position: relative;
  display: inline-block;
  margin: 0 0 15px;
  color: var(--gold);
  font-size: 24px;
}

.content-heading h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -16px;
  width: 54px;
  height: 2px;
  background: var(--gold);
}

.about-layout {
  display: grid;
  grid-template-columns: 390px minmax(0, 1fr);
  align-items: start;
  gap: 28px;
}

.about-layout > img {
  width: 100%;
}

.rich-text {
  color: #67676d;
}

.rich-text p {
  margin: 0 0 14px;
}

.rich-text strong {
  color: #5d5d61;
}

.rich-text ul {
  padding-left: 20px;
}

.content-with-sidebar,
.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 285px;
  align-items: start;
  gap: 26px;
}

.detail-layout-full {
  grid-template-columns: minmax(0, 1fr);
}

.sidebar {
  display: grid;
  gap: 22px;
}

.sidebar-search h3,
.category-list h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 20px;
}

.sidebar-search > div {
  display: flex;
}

.sidebar-search input {
  min-width: 0;
  width: 100%;
  border: 1px solid var(--line);
  padding: 14px;
}

.sidebar-search button {
  width: 48px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: #f4f4f5;
}

.category-list {
  box-shadow: 7px 8px 22px rgba(20, 20, 25, 0.22);
}

.category-list h3 {
  margin: 0;
  padding: 15px 21px;
  color: var(--white);
  background: var(--gold);
}

.category-list a {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 20px;
  color: var(--white);
  background: var(--gold);
  border-top: 2px solid rgba(255, 255, 255, 0.65);
  font-size: 13px;
}

.category-list a:hover {
  background: var(--gold-dark);
}

.category-list b {
  flex: 0 0 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #555;
  background: var(--white);
  font-size: 12px;
}

.contact-card {
  padding: 26px 20px;
  background: #f7f7f7;
  text-align: center;
}

.contact-card h3 {
  margin: 0 0 15px;
  color: #35343a;
  font-size: 31px;
  font-weight: 400;
  line-height: 1.05;
}

.contact-card > a:not(.solid-button) {
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid #ddd;
  color: #838389;
  font-size: 13px;
}

.contact-card p {
  color: #74747a;
  font-size: 14px;
}

.contact-card .solid-button {
  margin-top: 12px;
  font-size: 12px;
}

.service-list-grid {
  display: grid;
  gap: 30px;
}

.service-page-heading {
  max-width: 820px;
  margin: 0 auto 42px;
  text-align: center;
}

.service-page-heading p {
  max-width: 720px;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.service-showcase-grid {
  display: grid;
  gap: 30px;
}

.service-showcase-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.46fr) minmax(0, 0.54fr);
  grid-template-areas:
    "visual title"
    "visual button";
  column-gap: 34px;
  align-items: center;
  align-content: center;
  min-height: 325px;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-showcase-card:nth-child(even) {
  grid-template-areas:
    "title visual"
    "button visual";
}

.service-showcase-visual {
  grid-area: visual;
  display: block;
  width: 100%;
  height: 275px;
  overflow: hidden;
  border-radius: 4px;
  background: #f0ede8;
}

.service-showcase-visual::before,
.service-showcase-visual::after {
  display: none;
}

.service-showcase-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.service-showcase-card:hover .service-showcase-visual img {
  transform: scale(1.035);
  filter: saturate(1.04) contrast(1.02);
}

.service-showcase-card h2 {
  grid-area: title;
  align-self: end;
  margin: 0 0 18px;
  font-size: clamp(24px, 2vw, 31px);
  line-height: 1.18;
}

.service-showcase-card h2 a {
  color: var(--ink);
}

.service-showcase-button {
  grid-area: button;
  align-self: start;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  min-height: 48px;
  padding: 11px 22px;
  border: 2px solid var(--primary);
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(17, 19, 33, 0.14);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.service-showcase-button:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(200, 115, 36, 0.24);
}

@media (max-width: 820px) {
  .service-showcase-card,
  .service-showcase-card:nth-child(even) {
    grid-template-columns: 1fr;
    grid-template-areas:
      "visual"
      "title"
      "button";
    gap: 0;
    min-height: 0;
  }

  .service-showcase-visual {
    height: 250px;
    margin-bottom: 24px;
  }

  .service-showcase-card h2 {
    align-self: auto;
    font-size: 25px;
  }
}

.service-image-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.46fr) minmax(0, 0.54fr);
  gap: 34px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 24px;
  box-shadow: var(--shadow);
}

.service-image-card:nth-child(even) > a {
  order: 2;
}

.service-image-card img {
  width: 100%;
  height: 275px;
  object-fit: cover;
  border-radius: 4px;
}

.service-image-card h2 {
  margin-top: 0;
  color: var(--ink);
}

.detail-cover {
  width: 100%;
  max-height: 510px;
  object-fit: cover;
  margin-bottom: 28px;
}

.product-detail-top {
  display: grid;
  grid-template-columns: minmax(0, 0.48fr) minmax(0, 0.52fr);
  align-items: start;
  gap: 42px;
}

.main-product-image {
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.main-product-image::after {
  content: "Büyüt";
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 8px 13px;
  border-radius: 20px;
  color: var(--white);
  background: rgba(18, 17, 30, 0.78);
  font-size: 13px;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transform: translateY(5px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.main-product-image:hover::after,
.main-product-image:focus-within::after {
  opacity: 1;
  transform: translateY(0);
}

.main-product-image img {
  width: 100%;
  height: 465px;
  object-fit: contain;
  object-position: center;
  cursor: zoom-in;
}

.main-product-image img:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: -3px;
}

.gallery-thumbs {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.gallery-thumbs button {
  padding: 3px;
  border: 2px solid transparent;
  background: var(--white);
}

.gallery-thumbs button.active {
  border-color: var(--gold);
}

.gallery-thumbs img {
  width: 100%;
  height: 74px;
  object-fit: contain;
  object-position: center;
  background: var(--white);
}

body.lightbox-open {
  overflow: hidden;
}

.gallery-lightbox {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 72px;
  align-items: center;
  gap: 18px;
  padding: 34px;
  background: rgba(7, 7, 12, 0.94);
  backdrop-filter: blur(8px);
}

.gallery-lightbox[hidden] {
  display: none;
}

.lightbox-stage {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
  margin: 0;
  display: grid;
  place-items: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: calc(100vh - 90px);
  border-radius: 5px;
  object-fit: contain;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.5);
  touch-action: pan-y;
  user-select: none;
}

.lightbox-close,
.lightbox-nav {
  border: 0;
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
  transition: background 0.2s ease, transform 0.2s ease;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: var(--gold);
}

.lightbox-close {
  position: absolute;
  z-index: 2;
  top: 20px;
  right: 22px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 32px;
  line-height: 1;
}

.lightbox-nav[hidden] {
  display: none;
}

.lightbox-nav {
  width: 58px;
  height: 72px;
  border-radius: 10px;
  font-size: 48px;
  line-height: 1;
}

.lightbox-prev {
  grid-column: 1;
  grid-row: 1;
  justify-self: end;
}

.lightbox-next {
  grid-column: 3;
  grid-row: 1;
  justify-self: start;
}

.lightbox-counter {
  position: absolute;
  bottom: 14px;
  left: 50%;
  min-width: 68px;
  padding: 6px 12px;
  border-radius: 18px;
  color: var(--white);
  background: rgba(18, 17, 30, 0.78);
  text-align: center;
  transform: translateX(-50%);
}

.product-summary h1 {
  margin: 0 0 15px;
  color: var(--ink);
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.12;
}

.stars {
  display: flex;
  align-items: center;
  color: #f1ab35;
  letter-spacing: 1px;
  font-size: 18px;
}

.rating-star,
.price-admin-trigger {
  display: inline-grid;
  width: 21px;
  height: 24px;
  place-items: center;
  color: inherit;
  line-height: 1;
}

.price-admin-trigger {
  padding: 0;
  border: 0;
  outline-offset: 3px;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

.price-admin-trigger:hover,
.price-admin-trigger:focus-visible {
  color: #d88a0c;
  transform: translateY(-1px);
}

.detail-price {
  margin: 25px 0;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  color: var(--gold);
  font-size: 24px;
  font-weight: 800;
}

body.price-admin-open {
  overflow: hidden;
}

.price-admin-modal[hidden] {
  display: none;
}

.price-admin-modal {
  position: fixed;
  z-index: 140;
  inset: 0;
  display: grid;
  padding: 22px;
  place-items: center;
  background: rgba(12, 13, 20, 0.72);
  backdrop-filter: blur(9px);
}

.price-admin-dialog {
  position: relative;
  width: min(100%, 470px);
  padding: 34px;
  overflow: hidden;
  border: 1px solid rgba(200, 115, 36, 0.3);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(10, 12, 20, 0.38);
}

.price-admin-dialog::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  content: "";
  background: linear-gradient(90deg, #9d4f19, #e49336, #c87324);
}

.price-admin-close {
  position: absolute;
  z-index: 1;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(18, 17, 30, 0.1);
  border-radius: 50%;
  color: #4f5260;
  background: #f7f5f1;
  font-size: 25px;
  line-height: 1;
}

.price-admin-heading {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-right: 38px;
}

.price-admin-heading > .fa {
  display: grid;
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 15px;
  color: #fff;
  background: linear-gradient(145deg, #9d4f19, #d8842d);
  box-shadow: 0 9px 22px rgba(157, 79, 25, 0.25);
  font-size: 20px;
}

.price-admin-kicker {
  margin: 0 0 4px;
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
}

.price-admin-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: 25px;
  line-height: 1.2;
}

.price-admin-product {
  margin: 22px 0;
  padding: 13px 15px;
  border-left: 3px solid var(--gold);
  border-radius: 0 10px 10px 0;
  color: #565965;
  background: #f7f5f1;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.price-admin-login,
.price-admin-editor,
.price-admin-password-change {
  margin: 0;
}

.price-admin-login label,
.price-admin-editor label,
.price-admin-password-change label {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.price-admin-password-change label:not(:first-child) {
  margin-top: 14px;
}

.price-admin-password-change > input {
  width: 100%;
  height: 52px;
  padding: 0 15px;
  border: 1px solid #d9d9df;
  border-radius: 12px;
  outline: 0;
  color: var(--ink);
  background: #fff;
  font-size: 18px;
  font-weight: 800;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.price-admin-password-change > input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(200, 115, 36, 0.12);
}

.price-admin-password-row,
.price-admin-value-row {
  display: flex;
  align-items: stretch;
  border: 1px solid #d9d9df;
  border-radius: 12px;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.price-admin-password-row:focus-within,
.price-admin-value-row:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(200, 115, 36, 0.12);
}

.price-admin-password-row input,
.price-admin-value-row input {
  min-width: 0;
  flex: 1;
  height: 52px;
  padding: 0 15px;
  border: 0;
  outline: 0;
  border-radius: 12px;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-size: 18px;
  font-weight: 800;
}

.price-admin-toggle-password {
  width: 52px;
  border: 0;
  border-left: 1px solid #e4e4e8;
  border-radius: 0 12px 12px 0;
  color: #6a6d78;
  background: #faf9f7;
}

.price-admin-value-row > span {
  display: grid;
  padding: 0 16px;
  place-items: center;
  border-left: 1px solid #e4e4e8;
  color: var(--gold-dark);
  background: #faf9f7;
  font-weight: 900;
}

.price-admin-help {
  margin: 9px 0 0;
  color: #757884;
  font-size: 12px;
  line-height: 1.5;
}

.price-admin-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 10px;
  margin-top: 17px;
}

.price-admin-actions .price-admin-primary {
  margin-top: 0;
}

.price-admin-primary {
  width: 100%;
  min-height: 52px;
  margin-top: 17px;
  border: 0;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, #9d4f19, #c87324);
  box-shadow: 0 10px 24px rgba(157, 79, 25, 0.24);
  font-size: 15px;
  font-weight: 900;
}

.price-admin-secondary {
  min-height: 52px;
  padding: 0 12px;
  border: 1px solid rgba(157, 79, 25, 0.3);
  border-radius: 12px;
  color: var(--gold-dark);
  background: #fff8f0;
  font-size: 13px;
  font-weight: 900;
}

.price-admin-secondary:hover {
  border-color: var(--gold);
  background: #fff1df;
  transform: translateY(-1px);
}

.price-admin-primary:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.price-admin-primary:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.price-admin-primary.is-loading::after {
  display: inline-block;
  width: 13px;
  height: 13px;
  margin-left: 9px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: #fff;
  border-radius: 50%;
  content: "";
  vertical-align: -2px;
  animation: admin-spin 0.8s linear infinite;
}

.price-admin-message {
  min-height: 20px;
  margin: 13px 0 0;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.5;
  text-align: center;
}

.price-admin-message[data-type="error"] {
  color: #b42318;
}

.price-admin-message[data-type="success"] {
  color: #157347;
}

.price-admin-change-password-link[hidden] {
  display: none;
}

.price-admin-change-password-link {
  display: block;
  margin: 1px auto 0;
  padding: 2px 5px;
  border: 0;
  color: #77716b;
  background: transparent;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  text-decoration: underline;
  text-decoration-color: rgba(157, 79, 25, 0.38);
  text-underline-offset: 3px;
}

.price-admin-change-password-link:hover,
.price-admin-change-password-link:focus-visible {
  color: var(--gold-dark);
  text-decoration-color: currentColor;
}

@keyframes admin-spin {
  to {
    transform: rotate(360deg);
  }
}

.stock-code {
  font-size: 17px;
}

.stock-code span {
  color: #4a9d79;
  font-weight: 800;
  margin-left: 10px;
}

.product-intro {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.whatsapp-button {
  margin-top: 20px;
  background: #24b563;
}

.product-description {
  margin-top: 58px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.product-description h2 {
  color: var(--ink);
}

.contact-grid {
  max-width: 1080px;
  margin: 0 auto;
}

.contact-info {
  text-align: center;
}

.contact-info h2 {
  margin: 7px 0 10px;
  color: var(--ink);
  font-size: clamp(32px, 4vw, 42px);
}

.contact-info > p {
  max-width: 680px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 17px;
}

.contact-details-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 40px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  min-height: 170px;
  padding: 27px 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 8px 25px rgba(18, 17, 30, 0.08);
  text-align: left;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.contact-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(18, 17, 30, 0.12);
}

.contact-item > .fa {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--gold);
}

.contact-item p {
  margin: 5px 0 0;
  color: var(--muted);
}

.contact-item b {
  color: var(--ink);
  font-size: 19px;
}

.contact-text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  color: var(--gold-dark);
  font-size: 14px;
  font-weight: 700;
}

.contact-text-link:hover {
  color: var(--gold);
}

.map-section iframe {
  display: block;
  width: 100% !important;
  height: 340px !important;
}

.large {
  margin: -10px 0 25px;
}

.empty-state {
  padding: 50px 0;
  text-align: center;
}

.empty-state h2 {
  margin: 0;
  color: var(--gold);
  font-size: 110px;
  line-height: 1;
}

.no-results {
  padding: 40px;
  color: var(--muted);
  background: var(--soft);
  text-align: center;
}

.site-footer {
  padding: 26px 0;
  color: var(--white);
  background: var(--ink);
  font-size: 14px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-inner p {
  margin: 0;
}

.footer-inner a:hover {
  color: var(--gold);
}

.contact-actions {
  display: contents;
}

.whatsapp {
  position: fixed;
  right: 25px;
  bottom: 27px;
  z-index: 40;
  min-width: 166px;
  min-height: 52px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: var(--white);
  background: #49c65d;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
  font-size: 18px;
}

.whatsapp .fa {
  font-size: 25px;
}

.call-button {
  display: none;
}

.to-top {
  position: fixed;
  right: 28px;
  bottom: 92px;
  z-index: 39;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--gold);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.region-hero {
  position: relative;
  display: flex;
  min-height: 410px;
  padding: 76px 0;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(20, 22, 30, .91) 0%, rgba(20, 22, 30, .78) 37%, rgba(20, 22, 30, .42) 61%, rgba(157, 79, 25, .08) 100%),
    var(--region-bg) center 68% / cover no-repeat;
  box-shadow: inset 0 -5px 0 rgba(200, 115, 36, .82);
}

.region-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(0, 0, 0, .14));
}

.region-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 790px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
  font-weight: 700;
}

.breadcrumbs a:hover {
  color: #f4b15b;
}

.region-hero h1 {
  max-width: 760px;
  margin: 0 0 18px;
  color: var(--white);
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.06;
  text-shadow: 0 3px 18px rgba(0, 0, 0, .44);
}

.region-hero p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, .88);
  font-size: 19px;
  line-height: 1.7;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .48);
}

.region-intro-grid,
.region-delivery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: 42px;
  align-items: center;
}

.region-copy h2,
.region-section-heading h2 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.12;
}

.region-copy p {
  margin: 0 0 16px;
}

.region-highlight {
  padding: 28px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--gold);
  border-radius: 8px;
  background: var(--soft);
  box-shadow: var(--shadow);
}

.region-highlight h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 24px;
}

.region-highlight ul {
  margin: 0;
  padding-left: 20px;
}

.region-highlight li + li {
  margin-top: 7px;
}

.region-section-heading {
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
}

.region-section-heading p {
  margin: 0;
  color: var(--muted);
}

.region-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.region-product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.region-product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.region-product-card-body {
  padding: 22px;
}

.region-product-card h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 23px;
  line-height: 1.2;
}

.region-product-card p {
  margin: 0 0 16px;
  color: var(--muted);
}

.region-product-card a {
  color: var(--gold-dark);
  font-weight: 800;
}

.region-product-card a:hover {
  color: var(--gold);
}

.region-delivery-image {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.region-delivery-image img {
  width: 100%;
  min-height: 390px;
  object-fit: cover;
}

.region-neighborhoods {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin: 24px 0 0;
}

.region-neighborhoods span,
.region-neighborhoods a {
  padding: 9px 14px;
  border: 1px solid #e6c49e;
  border-radius: 999px;
  color: var(--gold-dark);
  background: #fff8ef;
  font-size: 14px;
  font-weight: 800;
}

.region-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.region-card {
  display: flex;
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  flex-direction: column;
  transition: transform .2s ease, border-color .2s ease;
}

.region-card:hover {
  border-color: #dfb17e;
  transform: translateY(-4px);
}

.region-card .region-card-icon {
  width: 42px;
  height: 42px;
  display: grid;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--gold);
}

.region-card h2,
.region-card h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.2;
}

.region-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.region-card .region-card-link {
  margin-top: auto;
  padding-top: 14px;
  color: var(--gold-dark);
  font-weight: 800;
}

.region-faq {
  max-width: 920px;
  margin: 0 auto;
}

.region-faq details {
  margin-bottom: 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
}

.region-faq summary {
  padding: 18px 54px 18px 20px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
}

.region-faq details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.region-cta {
  padding: 38px;
  border-radius: 10px;
  color: var(--white);
  background: linear-gradient(125deg, var(--ink), #2d303c);
  box-shadow: var(--shadow);
}

.region-cta h2 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: 34px;
}

.region-cta p {
  max-width: 720px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, .82);
}

@media (max-width: 1100px) {
  .main-nav {
    gap: 17px;
  }

  .main-nav > a,
  .nav-products-link {
    font-size: 13px;
  }

  .products-page .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

@media (max-width: 900px) {
  .topbar {
    background: var(--gold);
  }

  .topbar-inner {
    padding: 10px 0;
    align-items: flex-start;
  }

  .top-social a {
    display: none;
  }

  .top-contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
  }

  .nav-inner {
    min-height: 82px;
  }

  .brand img {
    width: 205px;
    max-height: 70px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    z-index: 50;
    inset: 0 0 0 24%;
    padding: 90px 35px 35px;
    background: var(--white);
    box-shadow: -8px 0 25px rgba(0, 0, 0, 0.15);
    transform: translateX(105%);
    transition: transform 0.3s ease;
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav > a:first-child {
    order: 1;
  }

  .main-nav > .nav-dropdown:not(.region-menu-dropdown) {
    order: 2;
  }

  .main-nav > .region-menu-dropdown {
    order: 3;
  }

  .main-nav > a[href$="hizmetler/"] {
    order: 4;
  }

  .main-nav > a[href*="sayfa/hakkimizda/"] {
    order: 5;
  }

  .main-nav > a[href$="blog/"] {
    order: 6;
  }

  .main-nav > a[href$="iletisim/"] {
    order: 7;
  }

  .menu-open .main-nav {
    transform: translateX(0);
  }

  .main-nav > a,
  .nav-products-link {
    font-size: 20px;
  }

  .nav-dropdown,
  .nav-dropdown-trigger {
    width: 100%;
  }

  .nav-dropdown-trigger {
    justify-content: space-between;
  }

  .nav-products-link {
    width: 100%;
    padding: 5px 0;
  }

  .nav-dropdown.submenu-open .nav-products-link {
    color: var(--gold);
  }

  .nav-caret {
    display: inline-block;
    margin-left: auto;
    color: var(--gold);
    font-size: 13px;
    transform: rotate(0);
  }

  .nav-dropdown.submenu-open .nav-caret {
    transform: rotate(180deg);
  }

  .submenu-toggle {
    display: none;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 4px;
    color: var(--ink);
    background: var(--soft);
    transition: transform 0.2s ease;
  }

  .nav-dropdown.submenu-open .submenu-toggle {
    transform: rotate(180deg);
  }

  .product-submenu {
    position: static;
    display: none;
    width: 100%;
    margin-top: 10px;
    padding: 7px 0 7px 15px;
    border-top: 0;
    border-left: 3px solid var(--gold);
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    transition: none;
  }

  .region-submenu {
    max-height: 46vh;
    overflow-y: auto;
    grid-template-columns: 1fr;
  }

  .region-submenu .region-all-link {
    grid-column: auto;
  }

  .nav-dropdown:hover .product-submenu,
  .nav-dropdown:focus-within .product-submenu {
    transform: none;
  }

  .nav-dropdown.submenu-open .product-submenu {
    display: grid;
  }

  .product-submenu a {
    padding: 9px 12px;
    font-size: 15px;
  }

  .hero-inner,
  .product-detail-top {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    gap: 30px;
  }

  .hero-visual {
    margin-right: 50px;
  }

  .category-grid,
  .product-grid,
  .home-products,
  .services-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-page .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .callout-inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .content-with-sidebar,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .contact-card {
    grid-column: 1 / -1;
  }

  .about-layout {
    grid-template-columns: 310px minmax(0, 1fr);
  }

  .region-product-grid,
  .region-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 26px, var(--container));
  }

  .topbar-inner,
  .footer-inner,
  .section-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .top-social {
    align-self: flex-end;
    margin-top: -32px;
  }

  .hero {
    padding: 40px 0 55px;
  }

  .region-hero {
    min-height: 340px;
    padding: 52px 0;
  }

  .region-hero h1 {
    font-size: 38px;
  }

  .region-hero p {
    font-size: 17px;
  }

  .region-intro-grid,
  .region-delivery-grid,
  .region-product-grid,
  .region-grid {
    grid-template-columns: 1fr;
  }

  .region-delivery-image img {
    min-height: 250px;
  }

  .region-cta {
    padding: 26px 22px;
  }

  .hero-visual {
    margin-right: 18px;
    padding: 22px 10px 20px 20px;
  }

  .hero-slider {
    height: 240px;
  }

  .hero-frame {
    inset: 10px 90px 9px 8px;
  }

  .dot-pattern {
    display: none;
  }

  .experience-seal {
    top: 54px;
    right: -8px;
    width: 116px;
    height: 116px;
    box-shadow:
      0 12px 26px rgba(35, 24, 12, .24),
      0 0 0 4px var(--white),
      0 0 0 6px var(--gold);
  }

  .experience-seal::before {
    inset: 9px;
  }

  .experience-orbit i {
    transform: rotate(calc(var(--i) * 20deg)) translateY(-50px);
    font-size: 8.5px;
    line-height: 12px;
  }

  .experience-spark-left {
    left: 20px;
  }

  .experience-spark-right {
    right: 20px;
  }

  .experience-core {
    inset: 22px;
  }

  .experience-core strong {
    font-size: 31px;
    letter-spacing: -2px;
  }

  .experience-core strong::before {
    bottom: -6px;
    width: 34px;
  }

  .experience-core strong::after {
    bottom: -10px;
    font-size: 5px;
  }

  .experience-core b {
    margin-top: 11px;
    padding: 2px 6px 2px 9px;
    font-size: 8px;
    letter-spacing: 2.5px;
  }

  .hero-copy h1 {
    font-size: 39px;
  }

  .eyebrow {
    letter-spacing: 2px;
  }

  .category-grid,
  .product-grid,
  .home-products,
  .services-grid,
  .feature-grid,
  .blog-grid,
  .sidebar,
  .about-layout {
    grid-template-columns: 1fr;
  }

  .products-page .product-grid {
    grid-template-columns: 1fr;
  }

  .contact-details-grid {
    grid-template-columns: 1fr;
  }

  .contact-item {
    min-height: 0;
    padding: 23px 21px;
  }

  .section {
    padding: 58px 0;
  }

  .page-title {
    min-height: 190px;
  }

  .blog-index-hero,
  .blog-page-title {
    min-height: 270px;
  }

  .article-content {
    padding: 28px 22px;
    font-size: 16px;
  }

  .article-content .article-lead {
    font-size: 18px;
  }

  .article-content h2 {
    font-size: 23px;
  }

  .article-cta {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px;
  }

  .product-image img {
    height: 250px;
  }

  .service-image-card {
    grid-template-columns: 1fr;
  }

  .service-image-card:nth-child(even) > a {
    order: initial;
  }

  .callout-actions {
    align-items: flex-start;
    flex-direction: column;
    white-space: normal;
  }

  .main-product-image img {
    height: 330px;
  }

  .main-product-image::after {
    opacity: 1;
    transform: none;
  }

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

  .gallery-thumbs img {
    height: 58px;
  }

  .gallery-lightbox {
    grid-template-columns: 1fr;
    padding: 58px 12px 70px;
  }

  .lightbox-stage {
    grid-column: 1;
    grid-row: 1;
  }

  .lightbox-image {
    max-height: calc(100vh - 135px);
  }

  .lightbox-nav {
    position: absolute;
    z-index: 2;
    top: 50%;
    width: 46px;
    height: 58px;
    border-radius: 8px;
    font-size: 40px;
    transform: translateY(-50%);
  }

  .lightbox-prev {
    grid-column: 1;
    left: 10px;
  }

  .lightbox-next {
    grid-column: 1;
    right: 10px;
  }

  .lightbox-close {
    top: 12px;
    right: 12px;
    width: 44px;
    height: 44px;
  }

  .whatsapp {
    position: static;
    right: auto;
    bottom: auto;
    width: auto;
    min-width: 0;
    min-height: 54px;
    border-radius: 14px;
    background: #25d366;
    box-shadow: 0 7px 18px rgba(37, 211, 102, 0.28);
    font-size: 15px;
    font-weight: 800;
  }

  .whatsapp span:last-child {
    display: inline;
  }

  .contact-actions {
    position: fixed;
    z-index: 45;
    right: 12px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    left: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    padding: 6px;
    border: 1px solid rgba(18, 17, 30, 0.08);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 12px 35px rgba(18, 17, 30, 0.22);
    backdrop-filter: blur(10px);
  }

  .call-button {
    min-height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: var(--white);
    background: #1473e6;
    box-shadow: 0 7px 18px rgba(20, 115, 230, 0.25);
    font-size: 15px;
    font-weight: 800;
  }

  .call-button .fa {
    font-size: 20px;
  }

  .whatsapp:active,
  .call-button:active {
    transform: scale(0.97);
  }

  body {
    padding-bottom: calc(88px + env(safe-area-inset-bottom));
  }

  .to-top {
    right: 15px;
    bottom: calc(94px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 600px) {
  .price-admin-modal {
    padding: 13px;
  }

  .price-admin-dialog {
    padding: 28px 20px 22px;
    border-radius: 20px;
  }

  .price-admin-heading {
    gap: 12px;
    padding-right: 34px;
  }

  .price-admin-heading > .fa {
    flex-basis: 44px;
    width: 44px;
    height: 44px;
    border-radius: 13px;
  }

  .price-admin-heading h2 {
    font-size: 21px;
  }

  .price-admin-product {
    margin: 18px 0;
  }
}
