:root {
  --bg:#FBF8F6;
  --card:#FFFFFF;
  --accent:#B08B4F;
  --muted:#7A6A5A;
  --text:#2E2A28;
  --radius:14px;
  --shadow:0 8px 24px rgba(46,42,40,0.08);
}

/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Inter, system-ui, -apple-system, "Helvetica Neue", Arial;
  background: linear-gradient(180deg, var(--bg) 0%, #FFFDFB 100%);
  color: var(--text);
  line-height: 1.6;
}

.container {
  width: 90%;
  margin: 0 auto;
  max-width: 1600px;
}

/* Header */
header {
  backdrop-filter: blur(6px);
  background: linear-gradient(180deg, rgba(255,255,255,0.6), rgba(255,255,255,0.4));
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(46,42,40,0.08);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo .mark {
  width: 52px;
  height: 52px;
  background: var(--accent);
  color: white;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  font-size: 24px;
}

.logo h1 {
  font-size: 22px;
  font-weight: 700;
  margin: 0;
}

.muted {
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Navigation */
nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.menu {
  display: flex;
  gap: 18px;
  align-items: center;
}

.menu a {
  color: var(--muted);
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 600;
  transition: all .2s ease;
}

.menu a:hover {
  background: var(--card);
  color: var(--text);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.cta {
  background: linear-gradient(90deg, var(--accent), #D3A86A);
  color: white;
  font-weight: 600;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-width: 200px;
  z-index: 99;
  padding: 8px 0;
  margin-top: 2px;
}

.dropdown-content a {
  display: block;
  padding: 10px 16px;
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  white-space: nowrap;
}

.dropdown-content a:hover {
  background: rgba(176, 139, 79, 0.08);
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Search Bar */
.search-container {
  margin: 24px 0;
}

#search {
  width: 100%;
  padding: 14px 20px;
  font-size: 16px;
  border-radius: var(--radius);
  border: 2px solid rgba(46,42,40,0.15);
  outline: none;
  box-shadow: 0 6px 18px rgba(46,42,40,0.1);
  background: var(--card);
  color: var(--text);
  transition: all 0.25s ease;
}

#search::placeholder {
  color: var(--muted);
}

#search:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(176,139,79,0.25);
}

/* Services */
.search-services {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 24px 0 28px;
}

.service-card {
  flex: 1;
  min-width: 200px;
  background: var(--card);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  font-weight: 700;
  box-shadow: var(--shadow);
  transition: all .25s ease;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.12);
}

/* Responsive */
@media (max-width: 680px) {
  .menu {
    display: none;
  }

  .topbar {
    flex-direction: column;
    gap: 10px;
  }
}
/* დამატებული სტილები grooming ბლოკებისთვის */
    .grooming-section {
      margin: 30px auto;
      max-width: 1000px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }

    .grooming-card {
      background: var(--card, #fff);
      box-shadow: 0 3px 10px rgba(0,0,0,0.1);
      border-radius: 16px;
      padding: 20px;
      width: 300px;
      text-align: center;
      transition: all 0.3s ease;
    }

    .grooming-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    }

    .grooming-card h3 {
      font-size: 20px;
      color: var(--accent, #B08);
      margin-bottom: 10px;
    }

    .grooming-card p {
      font-size: 15px;
      color: #555;
      line-height: 1.6;
    }
