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

:root {
  --primary-black: #0a0a0a;
  --secondary-grey: #1a1a1a;
  --accent-red: #dc2626;
  --light-grey: #f5f5f5;
  --mid-grey: #666666;
  --border-grey: #e5e5e5;
  --white: #ffffff;
  --shadow-light: rgba(0, 0, 0, 0.08);
  --shadow-medium: rgba(0, 0, 0, 0.15);
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  line-height: 1.7;
  color: var(--primary-black);
  background-color: var(--white);
}

.header {
  background-color: var(--white);
  border-bottom: 1px solid var(--border-grey);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand a {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-black);
  text-decoration: none;
  letter-spacing: 0.5px;
}

.main-nav {
  display: flex;
  gap: 2.5rem;
}

.main-nav a {
  color: var(--mid-grey);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color 0.3s;
  text-transform: uppercase;
}

.main-nav a:hover {
  color: var(--primary-black);
}

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

.menu-toggle span {
  width: 25px;
  height: 2px;
  background-color: var(--primary-black);
  transition: 0.3s;
}

.hero-section {
  background-image: url("../images/9.png");

  color: var(--white);
  padding: 100px 20px;
  text-align: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.hero-overlay {
  text-align: center;
  color: var(--white);
  z-index: 10;
  padding: 0 2rem;
}

.hero-text h1 {
  font-size: 4.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.hero-text p {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  background-color: var(--accent-red);
  color: var(--white);
  padding: 1rem 3rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 3px;
  display: inline-block;
  transition: transform 0.3s, box-shadow 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
}

.content-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.section-header h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-black);
}

.section-header p {
  font-size: 1.2rem;
  color: var(--mid-grey);
}

.philosophy-section {
  padding: 120px 0;
  background-color: var(--light-grey);
}

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

.philosophy-card {
  background-color: var(--white);
  padding: 3rem 2rem;
  border-radius: 0;
  border-left: 4px solid var(--accent-red);
  transition: transform 0.3s;
}

.philosophy-card:hover {
  transform: translateX(10px);
}

.card-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--border-grey);
  margin-bottom: 1rem;
}

.philosophy-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-black);
  font-weight: 700;
}

.philosophy-card p {
  color: var(--mid-grey);
  line-height: 1.8;
}

.collection-section {
  padding: 120px 0;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.product-item {
  background-color: var(--white);
  border: 1px solid var(--border-grey);
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.product-item:hover {
  box-shadow: 0 10px 40px var(--shadow-medium);
}

.product-visual {
  position: relative;
  width: 100%;
  height: 400px;
  background-color: var(--light-grey);
  overflow: hidden;
}

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

.product-item:hover .product-visual img {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--accent-red);
  color: var(--white);
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-details {
  padding: 2rem;
}

.product-details h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--primary-black);
}

.product-details p {
  color: var(--mid-grey);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.product-price {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-black);
  margin-bottom: 1.5rem;
}

.product-btn {
  display: block;
  width: 100%;
  background-color: var(--primary-black);
  color: var(--white);
  text-align: center;
  padding: 1rem;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  transition: background-color 0.3s;
}

.product-btn:hover {
  background-color: var(--accent-red);
}

.technology-section {
  padding: 120px 0;
  background-color: var(--secondary-grey);
  color: var(--white);
}

.tech-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.tech-text h2 {
  font-size: 3rem;
  margin-bottom: 3rem;
  font-weight: 700;
}

.tech-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.tech-feature h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--white);
  font-weight: 600;
}

.tech-feature p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

.tech-visual {
  width: 100%;
  height: 600px;
  background-color: var(--primary-black);
  display: flex;
  align-items: center;
  justify-content: center;
}

.tech-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lifestyle-section {
  padding: 120px 0;
}

.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.lifestyle-card {
  position: relative;
  height: 350px;
  overflow: hidden;
  cursor: pointer;
}

.lifestyle-card.large {
  grid-row: span 2;
  height: auto;
}

.lifestyle-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.lifestyle-card:hover img {
  transform: scale(1.1);
}

.lifestyle-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: var(--white);
  padding: 2rem;
}

.lifestyle-overlay h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.lifestyle-overlay p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
}

.testimonials-section {
  padding: 120px 0;
  background-color: var(--light-grey);
}

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

.testimonial-card {
  background-color: var(--white);
  padding: 3rem;
  border-left: 4px solid var(--accent-red);
}

.rating {
  color: var(--accent-red);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.testimonial-card p {
  color: var(--mid-grey);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author strong {
  display: block;
  color: var(--primary-black);
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.testimonial-author span {
  color: var(--mid-grey);
  font-size: 0.9rem;
}

.order-section {
  padding: 120px 0;
}

.order-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}

.order-info h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.order-info p {
  color: var(--mid-grey);
  line-height: 1.8;
  margin-bottom: 3rem;
}

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

.benefit-item h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--primary-black);
  font-weight: 600;
}

.benefit-item p {
  color: var(--mid-grey);
  margin: 0;
}

.order-form-modern {
  background-color: var(--light-grey);
  padding: 3rem;
}

.input-row {
  margin-bottom: 1.5rem;
}

.input-row.double {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.input-field label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--primary-black);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.input-field input,
.input-field select,
.input-field textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--border-grey);
  background-color: var(--white);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s;
}

.input-field input:focus,
.input-field select:focus,
.input-field textarea:focus {
  outline: none;
  border-color: var(--primary-black);
}

.submit-order {
  width: 100%;
  background-color: var(--accent-red);
  color: var(--white);
  padding: 1.2rem;
  border: none;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.submit-order:hover {
  background-color: #b91c1c;
}

.footer {
  background-color: var(--primary-black);
  color: var(--white);
  padding: 80px 0 30px;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.footer-column h3,
.footer-column h4 {
  margin-bottom: 1.5rem;
  font-weight: 700;
  font-size: 1.1rem;
}

.footer-column p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 0.8rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 0.8rem;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: var(--white);
}

.footer-legal {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary-black);
  color: var(--white);
  padding: 1.5rem;
  box-shadow: 0 -5px 20px var(--shadow-medium);
  z-index: 9999;
  display: none;
}

.cookie-notice.show {
  display: block;
}

.cookie-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-wrapper p {
  flex: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.btn-accept {
  background-color: var(--accent-red);
  color: var(--white);
  padding: 0.8rem 2rem;
  border: none;
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background-color 0.3s;
}

.btn-accept:hover {
  background-color: #b91c1c;
}

.success-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  justify-content: center;
  align-items: center;
}

.success-modal.show {
  display: flex;
}

.success-content {
  background-color: var(--white);
  padding: 4rem;
  max-width: 500px;
  text-align: center;
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: var(--accent-red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto 2rem;
}

.success-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--primary-black);
  font-weight: 700;
}

.success-content p {
  color: var(--mid-grey);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.success-close {
  background-color: var(--primary-black);
  color: var(--white);
  padding: 1rem 3rem;
  border: none;
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background-color 0.3s;
}

.success-close:hover {
  background-color: var(--accent-red);
}

.privacy-page {
  padding: 140px 0 80px;
}

.privacy-header {
  margin-bottom: 3rem;
}

.privacy-header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.update-date {
  color: var(--mid-grey);
  font-style: italic;
}

.privacy-text {
  max-width: 900px;
  margin: 0 auto;
}

.privacy-text h2 {
  font-size: 2rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--primary-black);
}

.privacy-text p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: var(--mid-grey);
}

.privacy-text ul {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.privacy-text li {
  margin-bottom: 0.8rem;
  line-height: 1.8;
  color: var(--mid-grey);
}

@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-text h1 {
    font-size: 3rem;
  }

  .tech-content,
  .order-container {
    grid-template-columns: 1fr;
  }

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

  .lifestyle-card.large {
    grid-row: span 1;
  }
}

@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 2.5rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

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

  .input-row.double {
    grid-template-columns: 1fr;
  }

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

  .philosophy-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}
