:root {
  --primary-blue: #0056B3;
  --accent-orange: #FFA500;
  --text-gray: #666666;
  --light-bg: #f9f9fb;
}

body {
  font-family: Helvetica, Arial, sans-serif;
  font-family: Helvetica, Arial, sans-serif;
  background: var(--light-bg);
  color: var(--text-gray);
  line-height: 1.6;
}

header {
  background: #000;
  color: white;
  padding: 2rem 1rem;
  text-align: center;
}

.cta-btn {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--accent-orange);
  color: white;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  margin-top: 1rem;
}

nav {
  background: var(--primary-blue);
  text-align: center;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

nav a {
  color: white;
  margin: 0 1rem;
  text-decoration: none;
  font-weight: 600;
}

.section {
  padding: 3rem 1rem;
  max-width: 900px;
  margin: auto;
}

.offer-box {
  background: white;
  padding: 2rem;
  margin: 1rem 0;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

footer {
  background: #000;
  color: white;
  text-align: center;
  padding: 2rem 1rem;
}

input, textarea {
  width: 100%;
  padding: 0.75rem;
  margin-top: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}

form button {
  background: var(--primary-blue);
  color: white;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 6px;
  margin-top: 1rem;
  cursor: pointer;
}

.logo-img {
  display: block;
  margin: 0 auto 1rem auto;
  max-width: 200px;
  height: auto;
}

#scrollBtn {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  background-color: var(--primary-blue);
  color: white;
  border: none;
  padding: 1rem;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

#scrollBtn:hover {
  background-color: #003f8c;
}


.social-sidebar {
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}

.social-icon {
  display: block;
  background-color: #333;
  color: white;
  text-align: center;
  padding: 5px;
  font-size: 10px;
  text-decoration: none;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  transition: background-color 0.3s ease;
}

.social-icon:hover {
  background-color: #555;
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  padding: 0 1rem;
}

.navbar {
  background: var(--primary-blue);
  padding: 1rem;
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar .nav-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 768px) {
  .navbar .nav-links {
    display: none;
    flex-direction: column;
    background: var(--primary-blue);
    padding: 1rem 0;
  }
  .navbar .nav-links.active {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
}

.navbar a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.product-box {
  background: white;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  padding: 1.5rem;
  text-align: center;
}

.product-box h3 {
  margin-bottom: 0.5rem;
}

.product-box p {
  margin-bottom: 1rem;
}

.newsletter-form {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.newsletter-form input[type="email"] {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  flex: 1;
  min-width: 220px;
}

.newsletter-form button {
  background: var(--primary-blue);
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

nav a[href="#newsletter"] {
  background-color: var(--accent-orange);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}
nav a[href="#newsletter"]:hover {
  background-color: #cc8400;
}

h1, h2, h3, h4, h5, h6 {
  font-family: Helvetica, Arial, sans-serif;
}

.footer-line {
  border: none;
  border-top: 1px solid #444;
  margin: 2rem auto;
  width: 90%;
}

footer h4 {
  margin-bottom: 0.3rem;
}

.footer-line {
  margin: 0.3rem 0 1rem 0;
}

.social-icon {
  position: relative;
}

.social-icon::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  background: #333;
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  margin-left: 8px;
  font-size: 12px;
  z-index: 1000;
}

.social-icon:hover::after {
  opacity: 1;
}


.whatsapp-fixed {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #25D366;
  color: white;
  font-weight: bold;
  padding: 12px 18px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 14px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 1001;
  transition: background-color 0.3s ease;
}
.whatsapp-fixed:hover {
  background-color: #1DA851;
}
.whatsapp-fixed:hover {
  background-color: #1DA851;
}

.trust-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: #FFD700;
  color: #222;
  font-weight: bold;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  z-index: 10;
}



.trust-badge-single {
  position: fixed;
  top: 1rem;
  right: 1rem;
  background-color: #FFD700;
  color: #222;
  font-weight: bold;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  white-space: nowrap;
  z-index: 1000;
}

.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #333;
  color: white;
  padding: 1rem;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  font-size: 14px;
  gap: 1rem;
  flex-wrap: wrap;
}
.cookie-banner button {
  background: #FFD700;
  color: #000;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: bold;
  cursor: pointer;
}
.cookie-banner a {
  color: #FFD700;
  text-decoration: underline;
}

.telegram-fixed {
  position: fixed;
  bottom: 70px;
  left: 20px;
  background-color: #0088cc;
  color: white;
  font-weight: bold;
  padding: 12px 18px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 14px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 1001;
  transition: background-color 0.3s ease;
}
.telegram-fixed:hover {
  background-color: #0077b3;
}

.success-popup {
  display: none;
  position: fixed;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -30%);
  background-color: #4BB543;
  color: white;
  font-size: 16px;
  padding: 1rem 2rem;
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(0,0,0,0.3);
  z-index: 10000;
  justify-content: center;
  align-items: center;
}