:root {
  --primary: #d4380d;
  --secondary: #ff7a59;
  --dark: #1a1a1a;
  --light: #f8f9fa;
  --gray: #6c757d;
}

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

body {
  background-color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  color: var(--dark);
  line-height: 1.6;
}

/* Header */
header {
  position: sticky;
  top: 0;
  background: white;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  padding: 15px 0;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary);
  text-decoration: none;
}
.logo img {
  height: 55px;
  width: auto;
  margin: 0;
  padding: 0;
  background: none;
  border-radius: 0;
  object-fit: contain;
  display: block;
}
@media (max-width: 768px) {
  .logo img { height: 40px; }
}

.logo span { color: var(--dark); }

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}
nav a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
  transition: color 0.3s;
  position: relative;
}
nav a:hover { color: var(--primary); }
nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: var(--primary);
  transition: width 0.3s;
}
nav a:hover::after { width: 100%; }

.lang-switch {
  display: inline-flex;
  gap: 8px;
}

.lang-btn {
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  color: #333;
  transition: all 0.2s ease;
}

.lang-btn:hover {
  background: #f0f0f0;
}

.lang-btn.active {
  background: #007bff;
  color: #fff;
  border-color: #007bff;
}

/* Banner */
.banner {
  height: 500px;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('baner.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  margin-bottom: 60px;
}
.banner h1 {
  font-size: 3rem;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0,0,0,0.7);
}
.banner p {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 20px auto 0;
  opacity: 0.95;
}

/* Sections */
section { padding: 60px 0; }
h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.2rem;
  color: var(--dark);
  position: relative;
}
h2::after {
  content: '';
  width: 80px;
  height: 4px;
  background: var(--primary);
  display: block;
  margin: 15px auto 0;
  border-radius: 2px;
}

/* Products */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}
.product-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}
.product-img {
  height: 200px;
  background: #f0f0f0;
  overflow: hidden;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.product-card:hover .product-img img { transform: scale(1.05); }
.product-info { padding: 20px; }
.product-info h3 {
  margin-bottom: 10px;
  color: var(--dark);
  font-size: 1.3rem;
}
.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  margin: 12px 0;
}
.price small {
  font-size: 1rem;
  font-weight: 400;
  color: #000000;
  margin-left: 4px;
  display: inline;
}

/* Contact */
.contact-info {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}
.contact-info p { margin: 12px 0; }
.contact-info .highlight {
  color: var(--primary);
  font-weight: 600;
}
#contact {
  background-color: #f1f3f5;
  border-radius: 16px;
  margin: 0 20px;
  padding: 50px 30px !important;
}

/* Footer */
footer {
  background: var(--dark);
  color: white;
  text-align: center;
  padding: 30px 0;
  margin-top: 60px;
  font-size: 0.9rem;
}

/* Lang visibility defaults */
.et { display: block; }
.ru { display: none; }

/* Responsiveness */
@media (max-width: 768px) {
  .header-inner { flex-direction: column; gap: 15px; }
  .banner h1 { font-size: 2.2rem; }
  .banner { height: 400px; }
  nav ul { gap: 15px; flex-wrap: wrap; justify-content: center; }
  #contact { margin: 0 10px; padding: 40px 20px !important; }
}
/* Белая аккуратная кнопка "Saada" */
.callback-form .btn{
  width: auto;                 /* не на всю ширину */
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 18px 60px;
  border-radius: 12px;

  background: #fff;
  color: #111;
  border: 1px solid rgba(0,0,0,.18);

  font-size: 15px;
  font-weight: 700;
  cursor: pointer;

  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
  }

.callback-form .btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0,0,0,.10);
  background: #fafafa;
}

.callback-form .btn:active{
  transform: translateY(0);
  box-shadow: none;
}
