:root {
  --navy: #0c2d3a;
  --navy-mid: #134559;
  --teal: #1a6b7a;
  --gold: #b8956a;
  --gold-light: #d4b896;
  --cream: #faf8f5;
  --white: #ffffff;
  --text: #1c2b33;
  --text-muted: #5c6f78;
  --border: #e4ddd4;
  --shadow-sm: 0 2px 12px rgba(12, 45, 58, 0.06);
  --shadow-md: 0 8px 32px rgba(12, 45, 58, 0.1);
  --shadow-lg: 0 20px 60px rgba(12, 45, 58, 0.14);
  --radius: 4px;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Inter", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--text);
  flex-shrink: 0;
}

  .logo-brand {
    height: 58px;
    width: auto;
    display: block;
    min-width: 200px;
  }

.logo-mark {
  width: 46px;
  height: 46px;
  background: var(--navy);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
}

.logo-text h1 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.06em;
  line-height: 1.2;
}

.logo-text span {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 4px;
}

.nav a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 10px 16px;
  transition: color 0.2s;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 16px;
  right: 16px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s;
}

.nav a:hover,
.nav a.active {
  color: var(--navy);
}

.nav a:hover::after,
.nav a.active::after {
  transform: scaleX(1);
}

.header-whatsapp {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  flex-shrink: 0;
  text-decoration: none;
}

.header-whatsapp:hover {
  background: #1fb855;
}

/* Hero */
.hero {
  position: relative;
  background: var(--navy);
  color: var(--white);
  padding: 100px 0 96px;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(184, 149, 106, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 10% 80%, rgba(26, 107, 122, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.hero-trust {
  display: none;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
  padding: 8px 16px;
  border: 1px solid rgba(184, 149, 106, 0.35);
  background: rgba(255, 255, 255, 0.05);
}

.hero-desc-short {
  display: none;
}

.hero-desc-full {
  display: block;
}

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.hero h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}

.hero-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
  margin-bottom: 28px;
}

.hero-services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
}

.hero-service-pill {
  border: 1px solid rgba(184, 149, 106, 0.35);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
  padding: 7px 14px;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
}

.hero-btn-whatsapp {
  background: var(--gold);
  color: var(--navy);
}

.hero-btn-whatsapp:hover {
  background: var(--gold-light);
}

.hero-btn-instagram {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.hero-btn-instagram:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}

.hero-badge {
  display: inline-block;
  border: 1px solid rgba(184, 149, 106, 0.45);
  color: var(--gold-light);
  padding: 10px 24px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 28px;
}

.hero-search {
  max-width: 640px;
  margin: 0 auto 8px;
  text-align: left;
}

.search-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 10px;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(184, 149, 106, 0.35);
  padding: 6px 8px 6px 14px;
  box-shadow: var(--shadow-md);
}

.search-box-inline {
  background: var(--white);
  max-width: 360px;
}

.search-icon {
  color: var(--text-muted);
  flex-shrink: 0;
}

.search-box input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--text);
  min-width: 0;
}

.search-box input::placeholder {
  color: #8a9aa3;
}

.search-clear {
  border: none;
  background: transparent;
  color: var(--navy);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 10px 12px;
  cursor: pointer;
  font-family: var(--font-sans);
}

.search-clear:hover {
  color: var(--gold);
}

.search-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.search-chip {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  padding: 7px 12px;
  font-size: 0.76rem;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: all 0.2s;
}

.search-chip:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: var(--gold-light);
}

.products-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.search-results-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.search-results-meta.hidden {
  display: none;
}

.search-empty {
  grid-column: 1 / -1;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 48px 32px;
  text-align: center;
}

.search-empty h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.search-empty p {
  color: var(--text-muted);
  max-width: 420px;
  margin: 0 auto 20px;
}

.btn-whatsapp-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: var(--navy);
  color: var(--white);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}

.btn-whatsapp-dark:hover {
  background: var(--navy-mid);
}

.product-body mark,
.search-results-meta mark {
  background: rgba(184, 149, 106, 0.25);
  color: inherit;
  padding: 0 2px;
}

.map-section {
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.map-header {
  text-align: center;
  margin-bottom: 24px;
}

.map-header h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--white);
  margin: 8px 0 10px;
}

.map-header p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
}

.map-frame {
  border: 1px solid rgba(255, 255, 255, 0.15);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
}

.map-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--gold-light);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(184, 149, 106, 0.45);
}

.map-link:hover {
  color: var(--white);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 200;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: var(--white);
  text-decoration: none;
  padding: 14px 18px;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.45);
}

.whatsapp-float span {
  display: none;
}

@media (min-width: 640px) {
  .whatsapp-float span {
    display: inline;
  }
}

/* Section titles */
.section-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 500;
}

.section-title {
  text-align: center;
  margin-bottom: 52px;
}

.section-title h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}

.section-title p {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 480px;
  margin: 0 auto;
}

.section-title.light .section-label {
  color: var(--gold-light);
}

.section-title.light h2,
.section-title.light p {
  color: var(--white);
}

.section-title.light p {
  opacity: 0.8;
}

/* Sections */
section {
  padding: 80px 0;
}

.section-categories {
  background: var(--white);
}

.section-services {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 72px 0;
}

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

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 28px 28px 24px;
  box-shadow: var(--shadow-sm);
}

.service-card-featured {
  border-color: rgba(184, 149, 106, 0.45);
  background: linear-gradient(180deg, var(--white) 0%, #fdfbf8 100%);
}

.service-icon {
  display: inline-block;
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  margin-bottom: 12px;
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.service-list {
  list-style: none;
  margin-top: 14px;
}

.service-list li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 8px;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 1px;
  background: var(--gold);
}

.service-cta {
  display: inline-block;
  margin-top: 16px;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}

.service-cta:hover {
  color: var(--gold);
}

.service-card-visual {
  padding-top: 0;
  overflow: hidden;
}

.service-visual {
  height: 160px;
  background: #050505;
  margin: -1px -1px 0;
  border-bottom: 1px solid var(--border);
}

.service-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.service-card-visual .service-icon,
.service-card-visual h3,
.service-card-visual p,
.service-card-visual .service-list,
.service-card-visual .service-cta {
  margin-left: 0;
}

.service-card-visual .service-icon {
  margin-top: 16px;
  margin-left: 28px;
}

.service-card-visual h3,
.service-card-visual p,
.service-card-visual .service-list {
  padding: 0 28px;
}

.section-services-alt {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.services-grid-single {
  grid-template-columns: 1fr;
  max-width: 720px;
  margin: 0 auto;
}

.service-card-wide {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 0;
  padding: 0;
}

.service-card-wide .service-visual {
  height: 100%;
  min-height: 280px;
  margin: 0;
  border-bottom: none;
  border-right: 1px solid var(--border);
}

.service-card-body {
  padding: 28px 28px 24px;
}

.service-list-inline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
}

@media (max-width: 768px) {
  .service-card-wide {
    grid-template-columns: 1fr;
  }

  .service-card-wide .service-visual {
    min-height: 180px;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .service-list-inline {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .mobile-nav {
    display: grid;
  }

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

  .container {
    padding: 0 18px;
  }

  /* Header — kompakt, kaydırmalı menü yok */
  .header-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    gap: 12px;
  }

  .nav {
    display: none;
  }

  .header-whatsapp {
    display: inline-flex;
  }

  .logo-brand {
    height: 40px;
    min-width: 0;
    max-width: min(220px, 62vw);
  }

  /* Hero — sade ve dengeli */
  .hero {
    padding: 36px 0 40px;
  }

  .hero-trust {
    display: inline-block;
  }

  .hero-mobile-hide {
    display: none !important;
  }

  .hero-desc-short {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 22px;
    color: rgba(255, 255, 255, 0.75);
  }

  .hero-desc-full {
    display: none;
  }

  .hero-br {
    display: none;
  }

  .hero h2 {
    font-size: 1.75rem;
    margin-bottom: 10px;
    line-height: 1.2;
  }

  .hero-eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    margin-bottom: 14px;
  }

  .hero h2 {
    font-size: 1.85rem;
    margin-bottom: 16px;
  }

  .hero-desc {
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 20px;
  }

  .hero-services {
    gap: 6px;
    margin-bottom: 22px;
  }

  .hero-service-pill {
    font-size: 0.62rem;
    padding: 6px 10px;
    letter-spacing: 0.04em;
  }

  .hero-service-pill-extra {
    display: none;
  }

  .hero-search {
    margin-bottom: 0;
    margin-top: 4px;
  }

  .search-box {
    padding: 4px 6px 4px 12px;
    border-radius: 2px;
  }

  .search-box input {
    font-size: 16px; /* iOS zoom önleme */
  }

  .search-clear {
    font-size: 0.68rem;
    padding: 8px 10px;
  }

  .search-suggestions {
    gap: 6px;
    margin-top: 10px;
    justify-content: center;
  }

  .search-chip {
    font-size: 0.7rem;
    padding: 6px 10px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 10px;
    margin-top: 18px;
    width: 100%;
  }

  .hero-btn {
    width: 100%;
    padding: 15px 18px;
    font-size: 0.78rem;
  }

  .hero-btn-whatsapp {
    box-shadow: 0 8px 24px rgba(184, 149, 106, 0.25);
  }

  .hero-badge {
    font-size: 0.68rem;
    padding: 8px 14px;
    margin-top: 18px;
    line-height: 1.5;
    max-width: 100%;
  }

  /* Bölümler */
  section {
    padding: 48px 0;
  }

  .section-services {
    padding: 48px 0;
  }

  .section-title {
    margin-bottom: 32px;
  }

  .section-title h2 {
    font-size: 1.55rem;
  }

  .section-title p {
    font-size: 0.88rem;
    padding: 0 4px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .service-card {
    padding: 22px 20px 20px;
  }

  .service-card-visual {
    padding-top: 0;
  }

  .service-visual {
    height: 130px;
  }

  .service-card-visual .service-icon {
    margin-left: 20px;
    margin-top: 14px;
  }

  .service-card-visual h3,
  .service-card-visual p,
  .service-card-visual .service-list {
    padding: 0 20px;
  }

  .service-card-visual .service-cta {
    margin-left: 20px;
  }

  .service-card h3 {
    font-size: 1.2rem;
  }

  /* Kategoriler — 2 sütun, premium boşluk */
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .category-card {
    padding-bottom: 20px;
    border-color: rgba(184, 149, 106, 0.22);
  }

  .category-visual {
    height: 128px;
  }

  .category-card h3 {
    font-size: 0.92rem;
    margin-top: 14px;
    margin-bottom: 4px;
  }

  .category-card p {
    font-size: 0.72rem;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    padding-left: 14px;
    padding-right: 14px;
  }

  .category-card h3,
  .category-card .category-cta {
    padding-left: 14px;
    padding-right: 14px;
  }

  .category-cta {
    margin-top: 10px;
    font-size: 0.64rem;
  }

  .btn-open-catalog {
    width: 100%;
    padding: 15px 20px;
  }

  /* Hakkımızda */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-text h2 {
    font-size: 1.55rem;
  }

  .about-stats {
    gap: 12px;
  }

  .stat-card {
    padding: 20px 14px;
  }

  .stat-card .number {
    font-size: 1.45rem;
  }

  .stat-card .label {
    font-size: 0.68rem;
    line-height: 1.45;
  }

  /* İletişim */
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .contact-card {
    padding: 22px 14px;
  }

  .contact-card h3 {
    font-size: 0.95rem;
  }

  .contact-card a,
  .contact-card p {
    font-size: 0.82rem;
  }

  .contact-cta {
    flex-direction: column;
    margin-top: 32px;
    gap: 10px;
  }

  .contact-cta .btn {
    width: 100%;
  }

  .map-frame iframe {
    height: 260px;
  }

  .map-section {
    margin-top: 40px;
    padding-top: 32px;
  }

  /* Ürün paneli */
  .products-panel-body {
    padding: 14px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .product-body {
    padding: 14px 12px 16px;
  }

  .product-body h3 {
    font-size: 0.92rem;
    line-height: 1.35;
  }

  .product-body p {
    font-size: 0.75rem;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .product-image,
  .category-visual {
    height: 130px;
  }

  .product-cta {
    font-size: 0.68rem;
  }

  .products-panel-top {
    padding: 12px 14px;
  }

  .products-panel-top h2 {
    font-size: 1.1rem;
  }

  .filter-bar {
    display: none;
  }

  .search-box-inline {
    max-width: none;
  }

  /* Alt bar + WhatsApp */
  .footer,
  .contact {
    padding-bottom: calc(24px + env(safe-area-inset-bottom, 0));
  }

  .whatsapp-float {
    bottom: calc(76px + env(safe-area-inset-bottom, 0));
    right: 16px;
    padding: 12px 14px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}

@media (max-width: 380px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .categories-grid {
    grid-template-columns: 1fr;
  }

  .hero h2 {
    font-size: 1.65rem;
  }
}

.section-products {
  background: var(--cream);
}

/* Categories */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.category-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 0 0 26px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  width: 100%;
  font: inherit;
  color: inherit;
  display: block;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.category-card::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 149, 106, 0.55), transparent);
  opacity: 0.85;
}

.category-visual,
.product-image {
  height: 168px;
  overflow: hidden;
  background: #050505;
}

.category-visual {
  height: 150px;
  border-bottom: 1px solid rgba(184, 149, 106, 0.2);
}

.product-visual {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #050505;
  transition: transform 0.35s ease;
}

.category-card:hover .product-visual,
.product-card:hover .product-visual {
  transform: scale(1.03);
}

.category-card h3,
.category-card p,
.category-card .category-cta {
  padding-left: 18px;
  padding-right: 18px;
}

.category-card h3 {
  margin-top: 18px;
}

.category-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.55;
  transform: scaleX(1);
  transition: opacity 0.3s;
}

.category-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.category-card:hover::before {
  opacity: 1;
}

.category-card .icon {
  display: none;
}

.category-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.category-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.category-cta {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.catalog-cta-wrap {
  text-align: center;
  margin-top: 28px;
}

.btn-open-catalog {
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 14px 28px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
}

.btn-open-catalog:hover {
  background: var(--navy-mid);
}

.search-live-results {
  margin-top: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.search-live-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  width: 100%;
  padding: 12px 14px;
  border: none;
  border-bottom: 1px solid var(--border);
  background: var(--white);
  text-align: left;
  cursor: pointer;
  font-family: var(--font-sans);
}

.search-live-item:last-child {
  border-bottom: none;
}

.search-live-item strong {
  color: var(--navy);
  font-size: 0.9rem;
}

.search-live-item span {
  color: var(--text-muted);
  font-size: 0.75rem;
}

.search-live-empty {
  padding: 14px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.products-panel {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(8, 31, 40, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}

.products-panel.is-open {
  opacity: 1;
  visibility: visible;
}

.products-panel-inner {
  position: absolute;
  inset: 0;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.products-panel.is-open .products-panel-inner {
  transform: translateY(0);
}

.products-panel-top {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.panel-back {
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--navy);
  padding: 10px 14px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
}

.products-panel-top h2 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--navy);
}

.products-panel-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  -webkit-overflow-scrolling: touch;
}

.products-panel-tools {
  display: grid;
  gap: 12px;
  margin-bottom: 20px;
}

.category-select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--navy);
}

body.panel-open {
  overflow: hidden;
}

.mobile-nav {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 250;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  grid-template-columns: repeat(4, 1fr);
  box-shadow: 0 -4px 24px rgba(12, 45, 58, 0.1);
  padding-bottom: env(safe-area-inset-bottom, 0);
}

.mobile-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 4px 12px;
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  background: transparent;
  border: none;
  font-family: var(--font-sans);
  cursor: pointer;
  min-height: 56px;
}

.mobile-nav-item svg {
  opacity: 0.7;
}

.mobile-nav-item span {
  line-height: 1.2;
}

.mobile-nav-btn {
  color: var(--navy);
}

.mobile-nav-btn svg {
  opacity: 1;
  color: var(--gold);
}

.mobile-nav-item:active,
.mobile-nav-btn:active {
  background: rgba(184, 149, 106, 0.08);
}

@media (min-width: 769px) {
  .products-panel-inner {
    inset: 40px;
    max-width: 980px;
    max-height: calc(100vh - 80px);
    margin: auto;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    transform: translateY(20px);
    opacity: 0;
  }

  .products-panel.is-open .products-panel-inner {
    transform: translateY(0);
    opacity: 1;
  }

  .category-select {
    display: none;
  }
}

.products-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 36px;
}

.products-header h2 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--navy);
}

.filter-bar {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.filter-btn {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 8px 16px;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-sans);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.3s;
}

.product-card .product-image {
  border-bottom: 1px solid var(--border);
}

.product-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(184, 149, 106, 0.4);
}

.product-body {
  padding: 22px 24px 24px;
}

.product-category {
  font-size: 0.68rem;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.product-body h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.product-body p {
  font-size: 0.83rem;
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.65;
}

.product-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: color 0.2s, gap 0.2s;
}

.product-cta:hover {
  color: var(--gold);
  gap: 10px;
}

/* About */
.about {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.about-text h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 20px;
}

.about-lead {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 14px;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 12px;
}

.features {
  list-style: none;
  margin-top: 28px;
  display: grid;
  gap: 14px;
}

.features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text);
}

.feature-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-card {
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 28px 20px;
  text-align: center;
}

.stat-card.highlight {
  background: var(--navy);
  border-color: var(--navy);
}

.stat-card .number {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
}

.stat-card.highlight .number {
  color: var(--gold-light);
}

.stat-card .label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 6px;
  letter-spacing: 0.03em;
}

.stat-card.highlight .label {
  color: rgba(255, 255, 255, 0.65);
}

/* Contact */
.contact {
  background: var(--navy);
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.contact-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 32px 24px;
  text-align: center;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(184, 149, 106, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--gold-light);
}

.contact-card h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--white);
}

.contact-card a,
.contact-card p {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 1.7;
}

.contact-card a:hover,
.contact-link:hover {
  color: var(--gold-light);
}

.contact-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--gold-light);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(184, 149, 106, 0.5);
}

.contact-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 48px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s;
  font-family: var(--font-sans);
}

.btn-whatsapp {
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--white);
}

.btn-whatsapp:hover {
  background: transparent;
  color: var(--white);
}

.btn-instagram {
  background: transparent;
  color: var(--gold-light);
  border: 1px solid rgba(184, 149, 106, 0.5);
}

.btn-instagram:hover {
  background: rgba(184, 149, 106, 0.12);
  border-color: var(--gold-light);
}

/* Footer */
.footer {
  background: #081f28;
  color: rgba(255, 255, 255, 0.5);
  padding: 28px 0;
  font-size: 0.82rem;
}

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

.footer strong {
  color: rgba(255, 255, 255, 0.85);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-sep {
  margin: 0 8px;
  opacity: 0.4;
}

.hidden {
  display: none !important;
}

/* Desktop-only overrides below — mobile styles in consolidated block above */
@media (min-width: 769px) {
  .hero-service-pill-extra {
    display: inline-block;
  }
}
