/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 5rem; -webkit-font-smoothing: antialiased; }

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #2d2d3a;
  background: #fff;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; line-height: 1.2; }

/* ===== CUSTOM PROPERTIES ===== */
:root {
  --primary: #1a5276;
  --primary-light: #2980b9;
  --primary-dark: #0e2f44;
  --accent: #e8b84b;
  --accent-light: #f0d080;
  --bg: #ffffff;
  --bg-alt: #f5f7fa;
  --text: #2d2d3a;
  --text-light: #7a7a8f;
  --text-muted: #a0a0b5;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(26, 82, 118, 0.06);
  --shadow-md: 0 8px 30px rgba(26, 82, 118, 0.08);
  --shadow-lg: 0 20px 60px rgba(26, 82, 118, 0.10);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --container: 1200px;
  --section-py: clamp(3rem, 6vw, 6rem);
}

/* ===== CONTAINER ===== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 4.5rem;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(26, 82, 118, 0.06);
  transition: var(--transition);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-icon { font-size: 1.5rem; }

.logo-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
}

.logo-accent { color: var(--primary); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-light);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.btn-nav {
  padding: 0.6rem 1.5rem;
  font-size: 0.8rem;
  background: var(--primary);
  color: var(--white);
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-nav:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ===== SECTION ===== */
.section { padding: var(--section-py) 0; }

.section-header { text-align: center; margin-bottom: 3rem; }

.section-subtitle {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--text);
  margin-bottom: 0.75rem;
}

.section-desc {
  color: var(--text-light);
  max-width: 500px;
  margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(26, 82, 118, 0.2);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26, 82, 118, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}

.btn-block { width: 100%; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 4.5rem;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14, 47, 68, 0.7), rgba(26, 82, 118, 0.4));
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 700px;
  padding-top: 2rem;
  padding-bottom: 3rem;
}

.hero-tag {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

.hero-highlight {
  color: var(--accent);
  font-style: italic;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 500px;
}

.hero-stat { text-align: center; }

.hero-stat-num {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
}

.hero-stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.2rem;
}

/* ===== CATEGORIES ===== */
.categories { background: var(--bg-alt); }

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1rem;
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1rem;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid rgba(26, 82, 118, 0.06);
  cursor: pointer;
  transition: var(--transition);
}

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

.cat-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }

.category-card h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.category-card p { font-size: 0.78rem; color: var(--text-light); margin-bottom: 0.5rem; }

.cat-count {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
}

/* ===== CATALOG ===== */
.catalog { background: var(--bg); }

.catalog-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.filter-group {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  border: 1px solid rgba(26, 82, 118, 0.1);
  background: var(--white);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}

.filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

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

.sort-select {
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  border: 1px solid rgba(26, 82, 118, 0.1);
  background: var(--white);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  outline: none;
}

/* ===== PROPERTY CARDS ===== */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}

.property-card {
  background: var(--white);
  border: 1px solid rgba(26, 82, 118, 0.06);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.property-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.property-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bg-alt);
}

.property-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.property-card:hover .property-image img { transform: scale(1.05); }

.property-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: var(--accent);
  color: var(--text);
}

.property-badge-sale { background: #e74c3c; color: #fff; }
.property-badge-new { background: var(--primary); color: #fff; }
.property-badge-elite { background: linear-gradient(135deg, var(--accent), var(--accent-light)); color: var(--text); }

.property-type-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  font-size: 0.6rem;
  font-weight: 600;
  background: rgba(255,255,255,0.9);
  color: var(--text);
  backdrop-filter: blur(4px);
}

.property-info {
  padding: 1.2rem;
}

.property-location {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.property-name {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.property-specs {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.8rem;
}

.property-specs span {
  font-size: 0.78rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.property-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.property-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
}

.property-old-price {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-right: 0.5rem;
  font-weight: 400;
}

.property-more {
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  border: 1px solid var(--primary);
  background: transparent;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}

.property-more:hover {
  background: var(--primary);
  color: var(--white);
}

.load-more-wrap { text-align: center; margin-top: 2.5rem; }

.load-more-btn {
  padding: 0.9rem 3rem;
  border-radius: 50px;
  border: 1px solid rgba(26, 82, 118, 0.1);
  background: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}

.load-more-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* ===== ABOUT ===== */
.about { background: var(--bg-alt); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 1rem;
}

.about-content p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.af-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }

.about-feature h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.about-feature p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 0;
}

/* ===== REVIEWS ===== */
.reviews { background: var(--bg); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.2rem;
}

.review-card {
  padding: 1.5rem;
  border: 1px solid rgba(26, 82, 118, 0.06);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: var(--transition);
}

.review-card:hover { box-shadow: var(--shadow-sm); }

.review-stars { font-size: 0.9rem; color: var(--accent); margin-bottom: 0.8rem; }

.review-text {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1rem;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text);
}

.review-name {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.review-detail {
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* ===== FEATURES ===== */
.features { background: var(--bg-alt); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
}

.feature-card {
  padding: 2rem 1.5rem;
  text-align: center;
  background: var(--white);
  border: 1px solid rgba(26, 82, 118, 0.06);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.feature-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-2px); }

.feature-icon { font-size: 2.5rem; margin-bottom: 1rem; }

.feature-card h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== ORDER FORM ===== */
.order {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
}

.order-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.order-content .section-subtitle { color: var(--accent); }

.order-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.order-content p {
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.order-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.order-benefit {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.9);
}

.order-form {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.form-row { margin-bottom: 0.8rem; }

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(26, 82, 118, 0.1);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  outline: none;
  transition: var(--transition);
  background: var(--bg);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 82, 118, 0.08);
}

.form-row textarea { resize: vertical; }

.form-agree {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.8rem;
}

.order-form .btn-block {
  background: var(--primary);
  color: var(--white);
  border: none;
}

.order-form .btn-block:hover {
  background: var(--primary-dark);
}

/* ===== CONTACTS ===== */
.contacts { background: var(--bg); }

.contacts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
}

.contact-card {
  padding: 2rem 1.5rem;
  text-align: center;
  background: var(--white);
  border: 1px solid rgba(26, 82, 118, 0.06);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.contact-card:hover { box-shadow: var(--shadow-sm); }

.contact-icon { font-size: 2rem; margin-bottom: 0.8rem; }

.contact-card h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.contact-card a {
  color: var(--primary);
  font-weight: 500;
  transition: var(--transition);
}

.contact-card a:hover { color: var(--primary-light); }

.contact-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 0.3rem;
}

/* ===== FOOTER ===== */
.footer {
  background: #0e2f44;
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand .logo-text { color: var(--white); font-size: 1.1rem; }

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  opacity: 0.6;
  margin-top: 0.8rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-social a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}

.footer-social a:hover { color: var(--accent); }

.footer-links h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.footer-links a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.6rem;
  transition: var(--transition);
}

.footer-links a:hover { color: var(--accent); padding-left: 4px; }

.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.5;
}

/* ===== QUICK VIEW MODAL ===== */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(14, 47, 68, 0.6);
  backdrop-filter: blur(8px);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 1rem;
}

.modal-overlay.open { opacity: 1; pointer-events: auto; }

.modal-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-height: 85vh;
  overflow-y: auto;
  width: 100%;
  max-width: 800px;
  transform: scale(0.95) translateY(20px);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  padding: 2rem;
  position: relative;
}

.modal-overlay.open .modal-content { transform: scale(1) translateY(0); }

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--bg-alt);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: var(--transition);
  z-index: 10;
}

.modal-close:hover { background: #e5e5ea; }

/* ===== FADE UP ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== TOAST ===== */
.toast-container {
  position: fixed;
  top: 5.5rem;
  right: 1.5rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  pointer-events: none;
}

.toast {
  background: var(--white);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  pointer-events: auto;
  min-width: 280px;
  border-left: 4px solid var(--primary);
}

.toast.show { transform: translateX(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-image { order: -1; }
  .order-wrapper { grid-template-columns: 1fr; }
  .order-content { text-align: center; }
  .order-benefits { align-items: center; }
  .footer-content { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    gap: 1.5rem;
    box-shadow: -10px 0 40px rgba(0,0,0,0.06);
    transition: var(--transition);
    z-index: 1000;
  }
  .nav-links.active { right: 0; }
  .nav-toggle { display: flex; }
  .nav-links a { font-size: 1rem; }
  .btn-nav { display: none; }

  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .hero-actions { flex-direction: column; }

  .catalog-controls { flex-direction: column; align-items: flex-start; }
  .catalog-grid { grid-template-columns: 1fr; }

  .hero-title { font-size: clamp(2rem, 8vw, 2.8rem); }

  .footer-content { grid-template-columns: 1fr; text-align: center; }
  .footer-social { justify-content: center; }

  .toast-container { right: 1rem; left: 1rem; }
  .toast { min-width: auto; }
}

@media (max-width: 480px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
}
