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

:root {
  --primary: #2d3fe7;
  --secondary: #ff6b35;
  --dark: #1a1a2e;
  --light: #f8f9fa;
  --gray: #6c757d;
  --white: #ffffff;
  --accent: #00d9ff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.header {
  padding: 15px 0;
  background: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: transform 0.3s;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: -0.5px;
  word-break: break-word;
}

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

.nav-link {
  color: var(--dark);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: 0.3s;
}

.hero {
  padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-text {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
}

.hero-visual {
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
}

.hero-shape {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.btn-primary {
  display: inline-block;
  padding: 12px 30px;
  background: var(--white);
  color: var(--primary);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.3s, box-shadow 0.3s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
  display: inline-block;
  padding: 12px 30px;
  background: transparent;
  color: var(--primary);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  border: 2px solid var(--primary);
  transition: all 0.3s;
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-small {
  display: inline-block;
  padding: 8px 20px;
  background: var(--primary);
  color: var(--white);
  text-decoration: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-small:hover {
  background: var(--dark);
}

.features {
  padding: 60px 0;
  background: var(--light);
}

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

.feature-card {
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
}

.feature-card p {
  font-size: 14px;
  color: var(--gray);
}

.about {
  padding: 80px 0;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-content h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 700;
}

.about-content p {
  margin-bottom: 15px;
  color: var(--gray);
}

.products {
  padding: 80px 0;
  background: var(--light);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  margin-bottom: 10px;
  font-weight: 700;
}

.section-header p {
  color: var(--gray);
  font-size: 16px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.product-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--secondary);
  color: var(--white);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  z-index: 1;
}

.product-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: var(--light);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

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

.product-info {
  padding: 25px;
}

.product-info h3 {
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 600;
}

.product-info p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 15px;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
}

.categories {
  padding: 60px 0;
}

.categories h2 {
  text-align: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  margin-bottom: 40px;
  font-weight: 700;
}

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

.category-item {
  background: var(--light);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  text-decoration: none;
  color: var(--dark);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.category-item:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-5px);
}

.category-item span {
  font-weight: 600;
  font-size: 15px;
}

.cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  text-align: center;
}

.cta-content h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  color: var(--white);
  margin-bottom: 15px;
  font-weight: 700;
}

.cta-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
}

.page-hero {
  padding: 60px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  text-align: center;
}

.page-hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 42px;
  color: var(--white);
  margin-bottom: 15px;
  font-weight: 700;
}

.page-hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
}

.content-section {
  padding: 80px 0;
}

.content-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.content-text h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: 700;
}

.content-text p {
  margin-bottom: 15px;
  color: var(--gray);
}

.content-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.features-alt {
  padding: 60px 0;
  background: var(--light);
}

.features-alt h2 {
  text-align: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  margin-bottom: 40px;
  font-weight: 700;
}

.feature-box {
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
}

.feature-box h3 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
}

.feature-box p {
  font-size: 14px;
  color: var(--gray);
}

.info-section {
  padding: 60px 0;
}

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

.info-card {
  background: var(--light);
  padding: 35px;
  border-radius: 12px;
  text-align: center;
}

.info-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 600;
}

.info-card p {
  color: var(--gray);
  font-size: 14px;
}

.contact-section {
  padding: 60px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 32px;
  margin-bottom: 15px;
  font-weight: 700;
}

.contact-info > p {
  color: var(--gray);
  margin-bottom: 30px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-item h4 {
  font-size: 16px;
  margin-bottom: 5px;
  font-weight: 600;
}

.contact-item p {
  font-size: 14px;
  color: var(--gray);
}

.contact-form-wrapper {
  background: var(--light);
  padding: 40px;
  border-radius: 12px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
}

.form-group input,
.form-group textarea {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.checkbox-group {
  flex-direction: row;
  align-items: flex-start;
}

.checkbox-label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--gray);
  cursor: pointer;
}

.checkbox-label input[type='checkbox'] {
  margin-top: 3px;
  cursor: pointer;
}

.checkbox-label a {
  color: var(--primary);
  text-decoration: underline;
}

.map-section {
  padding: 60px 0;
  background: var(--light);
}

.map-section h2 {
  text-align: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 32px;
  margin-bottom: 30px;
  font-weight: 700;
}

.map-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.thankyou-section,
.error-section {
  padding: 100px 0;
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
}

.thankyou-content,
.error-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.thankyou-content h1,
.error-content h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: 700;
}

.thankyou-content p,
.error-content p {
  font-size: 16px;
  color: var(--gray);
  margin-bottom: 15px;
}

.thankyou-actions,
.error-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap;
}

.error-code {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 120px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 20px;
}

.policy-section {
  padding: 60px 0;
  word-break: break-all;
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
}

.policy-content h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  margin-bottom: 10px;
  font-weight: 700;
}

.policy-date {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 30px;
}

.policy-content h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  margin-top: 35px;
  margin-bottom: 15px;
  font-weight: 700;
}

.policy-content h3 {
  font-size: 18px;
  margin-top: 25px;
  margin-bottom: 12px;
  font-weight: 600;
}

.policy-content p {
  margin-bottom: 15px;
  color: var(--gray);
  line-height: 1.8;
}

.policy-content ul {
  margin: 15px 0 15px 25px;
}

.policy-content li {
  margin-bottom: 8px;
  color: var(--gray);
  line-height: 1.8;
}

.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: var(--white);
  padding: 20px;
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.3s;
}

.cookie-popup.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-content p {
  flex: 1;
  font-size: 14px;
  margin: 0;
}

.cookie-buttons {
  display: flex;
  gap: 15px;
  align-items: center;
}

.cookie-link {
  color: var(--white);
  text-decoration: underline;
  font-size: 14px;
}

.cookie-accept {
  padding: 10px 25px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.3s;
}

.cookie-accept:hover {
  background: var(--secondary);
}

.footer {
  background: var(--dark);
  color: var(--white);
  padding: 40px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-col h4 {
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-col p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 13px;
  margin-bottom: 8px;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  .nav {
    position: fixed;
    top: 61px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
    gap: 15px;
    padding: 0 20px;
  }

  .nav.active {
    max-height: 300px;
    opacity: 1;
    padding: 20px;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    padding: 60px 0;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-visual {
    display: none;
  }

  .about-layout,
  .content-layout,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .section-header h2,
  .about-content h2,
  .categories h2,
  .cta-content h2 {
    font-size: 28px;
  }

  .page-hero {
    padding: 40px 0;
  }

  .page-hero h1 {
    font-size: 32px;
  }

  .thankyou-actions,
  .error-actions {
    flex-direction: column;
  }

  .error-code {
    font-size: 80px;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }

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

  .contact-form-wrapper {
    padding: 30px 20px;
  }

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

@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }

  .hero {
    padding: 40px 0;
  }

  .hero-title {
    font-size: 26px;
  }

  .hero-text {
    font-size: 15px;
  }

  .section-header h2,
  .about-content h2,
  .categories h2,
  .cta-content h2 {
    font-size: 24px;
  }

  .page-hero {
    padding: 30px 0;
  }

  .page-hero h1 {
    font-size: 28px;
  }

  .page-hero p {
    font-size: 16px;
  }

  .products-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper {
    padding: 20px 15px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

@media (max-width: 360px) {
  .container {
    padding: 0 10px;
  }

  .logo {
    font-size: 16px;
  }

  .hero-title {
    font-size: 24px;
  }

  .section-header h2,
  .about-content h2,
  .categories h2,
  .cta-content h2 {
    font-size: 22px;
  }

  .page-hero h1 {
    font-size: 24px;
  }

  .contact-form-wrapper {
    padding: 15px 10px;
  }

  .feature-card,
  .product-card,
  .info-card {
    padding: 20px;
  }

  .cookie-content {
    padding: 10px;
  }

  .cookie-content p {
    font-size: 13px;
  }
}
