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

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

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

/* Header */
.header {
  background: white;
  padding: 15px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: 700;
  color: #000;
  text-decoration: none;
  gap: 10px;
}
.logo span{
  font-family: Inter;
font-weight: 800;
font-style: Extra Bold;
font-size: 24px;
leading-trim: NONE;
line-height: 100%;
letter-spacing: 0%;
color: #191919;

}

.logo-icon {
  width: 32px;
  height: 32px;
  background: #003CD5;
  border-radius: 50%;
  margin-right: 10px;
  position: relative;
}

.logo-icon::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  background: white;
  border-radius: 50%;
}

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

.nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.nav a:hover {
  color: #003CD5;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #003CD5 0%, #3B49DF 100%);
  color: white;
  padding: 120px 0 80px;
  
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-bottom: 0px;
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;

  line-height: 1.1;
  text-align: left;
}

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

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

.hero-image img {
 
  width: 220%;
  height: auto;
}


.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding-bottom: 40px;
align-items: flex-end;
 
}

.hero-description {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 289px;
  width: 100%;

}

.btn-primary {
  background: white;
  color: #003CD5;
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}
.hero-text .btn-primary{
  border-radius: 60px;
background: #FFF;
box-shadow: 0 5px 0 0 rgba(255, 255, 255, 0.70);
width: 214px;
}
.btn__wrapper{
  width: 100%;
  display: flex;
  max-width: 289px;
  width: 100%;
}

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

/* Stats Section */
.stats {
  background: #f8f9fa;
  padding: 80px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-card {
  background: white;
  padding: 20px 20px;
  border-radius: 20px;

  border: 2px solid #003CD5;
  position: relative;
}

.stat-icon {
  width: 20px;
  height: 20px;
  background: #003CD5;
  margin-bottom: 10px;
  transform: rotate(45deg);
  border-radius: 2px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #003CD5;
  margin-bottom: 10px;
}

.stat-label {
  color: #003CD5;
  font-size: 14px;
  font-weight: 500;
}

/* About Section */
.about {
  padding: 100px 0;
  background: white;
}

.about h2 {
  font-size: 3rem;
  font-weight: 800;
  color: #003CD5;
  margin-bottom: 60px;
}

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

.about-left {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.about-text {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}

.brand-badge {
  align-self: flex-start;
}

.brand-badge img {
  width: 100%;
  height: auto;
}

.about-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image img {
  max-width: 100%;
  height: auto;
  width: 100%;
}

.about-right {
  display: flex;
  align-items: center;
}

/* Responsive */
@media (max-width: 1024px) {
  .about-layout {
      grid-template-columns: 1fr;
      gap: 40px;
      text-align: center;
  }
  
  .brand-badge {
      align-self: center;
  }
}

@media (max-width: 768px) {
  .about h2 {
      font-size: 2.5rem;
  }
  
  .about-layout {
      gap: 30px;
  }
}

@media (max-width: 480px) {
  .about h2 {
      font-size: 2rem;
  }
}

/* Catalog Section */
.catalog {
  background: linear-gradient(135deg, #003CD5 0%, #3B49DF 100%);
  color: white;
  padding: 100px 0;
}

.catalog h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 60px;
}

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

.product-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.product-image {

  border-radius: 15px;

  margin-bottom: 20px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image img {
  max-width: 100%;
  max-height: 100%;
}

.product-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.product-description {
  font-size: 14px;
  opacity: 0.8;

  line-height: 1.5;
}

.product-price {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.btn-secondary {
  background: white;
  color: #003CD5;
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Reviews Section */
.reviews {
  background: #f8f9fa;
  padding: 100px 0;
}

.reviews h2 {
  font-size: 3rem;
  font-weight: 800;
  color: #003CD5;
  margin-bottom: 60px;
}

.reviews-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: center;
}

.reviews-left {
  display: flex;
  justify-content: center;
  align-items: center;
}

.review-graphic img {
  max-width: 100%;
  height: auto;
}

.reviews-right {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.reviews-top-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.reviews-bottom-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.review-card {
  background: white;
  padding: 30px;
  border-radius: 20px;
  border: 2px solid #E6EEFF;
}

.stars {
  color: #ffc107;
  font-size: 16px;
  margin-bottom: 15px;
}

.reviewer-name {
  font-weight: 600;
  color: #003CD5;
  margin-bottom: 10px;
  font-size: 16px;
}

.review-text {
  color: #003CD5;
  font-style: italic;
  line-height: 1.6;
  font-size: 14px;
}

/* Contact Section */
.contact {
  background: linear-gradient(135deg, #003CD5 0%, #3B49DF 100%);
  color: white;
  padding: 100px 0;
  position: relative;
}

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

.contact h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 30px;
  line-height: 1.2;
}

.contact-description {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 40px;
  line-height: 1.6;
}

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

.contact-item {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 15px 25px;
  backdrop-filter: blur(10px);
  font-size: 16px;
}

.contact-image {
  text-align: right;
}

.contact-image img {
  max-width: 100%;
  height: auto;
}

/* Footer */
.footer {
  background: white;
  padding: 50px 0 30px;
  border-top: 1px solid #e9ecef;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.footer-links {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}

.footer-links a {
  color: #666;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #003CD5;
}

.footer-info {
  color: #666;
  font-size: 14px;
  margin-bottom: 20px;
}

.footer-info p {
  margin-bottom: 5px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: #003CD5;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s;
}

.social-links a:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(66, 99, 235, 0.3);
}

.copyright {
  text-align: left;
  color: #666;
  font-size: 14px;
  border-top: 1px solid #e9ecef;
  padding-top: 20px;
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 400px;
  background: white;
  border-radius: 20px;
  border: 3px solid #003CD5;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  padding: 30px;
  z-index: 10000;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s ease;
  text-align: center;
  display: none;
}

.cookie-popup.show {
  transform: translateY(0);
  opacity: 1;
  display: block;
}

.cookie-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.cookie-popup h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #003CD5;
  line-height: 1.3;
}

.cookie-popup p {
  font-size: 14px;
  color: #666;
  margin-bottom: 25px;
  line-height: 1.5;
  text-align: center;
}

.cookie-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cookie-btn {
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
}

.cookie-accept {
  background: #003CD5;
  color: white;
}

.cookie-accept:hover {
  background: #3B49DF;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(66, 99, 235, 0.3);
}

.cookie-manage {
  background: transparent;
  color: #003CD5;
  border: 2px solid #003CD5;
}

.cookie-manage:hover {
  background: #f8f9ff;
  transform: translateY(-2px);
}

/* Desktop version */
@media (min-width: 769px) {
  .cookie-popup {
      width: 500px;
  }
  
  .cookie-buttons {
      flex-direction: row;
      gap: 20px;
  }
  
  .cookie-btn {
      flex: 1;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .cookie-popup {
      left: 10px;
      right: 10px;
      width: auto;
      max-width: 400px;
      margin: 0 auto;
  }
  
  .cookie-popup h3 {
      font-size: 18px;
  }
  
  .cookie-popup p {
      font-size: 13px;
  }
}

@media (max-width: 480px) {
  .cookie-popup {
      padding: 25px 20px;
  }
  
  .cookie-icon {
      font-size: 40px;
      margin-bottom: 15px;
  }
  
  .cookie-popup h3 {
      font-size: 16px;
      margin-bottom: 12px;
  }
  
  .cookie-popup p {
      font-size: 12px;
      margin-bottom: 20px;
  }
  
  .cookie-btn {
      padding: 12px 24px;
      font-size: 13px;
  }
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .container {
      padding: 0 15px;
  }
  
  .hero-text h1 {
      font-size: 3rem;
  }
  
  .products-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
  }
  
  .stats-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
  }

  .reviews-bottom-row {
      grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav {
      position: fixed;
      top: 70px;
      left: 0;
      right: 0;
      background: white;
      flex-direction: column;
      padding: 20px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
      transform: translateY(-100%);
      opacity: 0;
      transition: all 0.3s ease;
      z-index: 999;
      display: none;
  }
  
  .nav.mobile-active {
      display: flex;
      transform: translateY(0);
      opacity: 1;
  }
  
  .mobile-menu-toggle {
      display: flex;
  }
  
  .mobile-menu-toggle.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
  }
  
  .mobile-menu-toggle.active span:nth-child(2) {
      opacity: 0;
  }
  
  .mobile-menu-toggle.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -6px);
  }
  
  .hero {
      padding: 100px 0 60px;
      min-height: auto;
  }
  
  .hero-content {
      grid-template-columns: 1fr;
      gap: 40px;
      text-align: center;
  }
  
  .hero-title {
      font-size: 2.5rem;
  }
  
  .about-content {
      grid-template-columns: 1fr;
      gap: 40px;
  }
  
  .contact-content {
      grid-template-columns: 1fr;
      gap: 40px;
  }
  
  .products-grid {
      grid-template-columns: 1fr;
      gap: 20px;
  }
  
  .stats-grid {
      grid-template-columns: 1fr;
      gap: 20px;
  }
  
  .reviews-container {
      grid-template-columns: 1fr;
      gap: 40px;
  }
  
  .reviews-top-row {
      grid-template-columns: 1fr;
      gap: 20px;
  }
  
  .reviews-bottom-row {
      grid-template-columns: 1fr;
      gap: 20px;
  }
  
  .footer-content {
      flex-direction: column;
      gap: 20px;
      text-align: center;
  }
  
  .footer-links {
      flex-wrap: wrap;
      justify-content: center;
  }
  
  .cookie-popup {
      left: 10px;
      right: 10px;
      max-width: none;
  }
}

@media (max-width: 480px) {
  .hero-title {
      font-size: 2rem;
  }
  
  .about h2,
  .catalog h2,
  .reviews h2,
  .contact h2 {
      font-size: 2rem;
  }
  
  .stat-number {
      font-size: 2rem;
  }

  .brand-badge {
      position: static;
      margin-top: 20px;
      display: inline-block;
  }
}





.product-detail {
  background: linear-gradient(135deg, #003CD5 0%, #3B49DF 100%);
  color: white;
  padding: 100px 0;
}

.product-detail-title {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 40px;
  text-align: left;
}

.product-detail-card {

  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
 
  backdrop-filter: blur(10px);
}

.product-detail-image {

  border-radius: 20px;

  display: flex;
  justify-content: center;
  align-items: center;

}

.product-detail-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.product-detail-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-description {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-description p {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.9;
  
}

.product-specs h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: white;
}

.product-specs ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-specs li {
  font-size: 16px;
  display: flex;
  align-items: center;
}

.product-specs li span {
  font-weight: 600;
  min-width: 120px;
  margin-right: 10px;
}

.product-purchase {

  align-items: center;
  gap: 30px;
  margin-top: 20px;
}

.product-price {
  font-size: 3rem;
  font-weight: 900;
  color: white;
}

.btn-buy {
  background: white;
  color: #003CD5;
  padding: 15px 40px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;

  border-radius: 60px;
background: #FFF;
box-shadow: 0 5px 0 0 rgba(255, 255, 255, 0.70);
}

.btn-buy:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .product-detail-card {
      grid-template-columns: 1fr;
      gap: 40px;
      text-align: center;
  }
  
  .product-detail-title {
      font-size: 3rem;
      text-align: center;
  }
  
  .product-purchase {
      justify-content: center;
  }
}

@media (max-width: 768px) {
  .product-detail {
      padding: 60px 0;
  }
  
  .product-detail-title {
      font-size: 2.5rem;
  }
  
  .product-detail-card {
      padding: 30px 20px;
      gap: 30px;
  }
  
  .product-detail-image {
      min-height: 300px;
      padding: 20px;
  }
  
  .product-purchase {
      flex-direction: column;
      gap: 20px;
  }
  
  .product-price {
      font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .product-detail-title {
      font-size: 2rem;
  }
  
  .product-price {
      font-size: 2rem;
  }
  
  .product-specs li {
      font-size: 14px;
  }
  
  .product-specs li span {
      min-width: 100px;
  }
  
  .product-description p {
      font-size: 14px;
  }
}

@media (max-width: 768px) {
  .hero-image img{
    width: 100%;
  }
  .hero-text{
    align-items: center;
  }
  .btn__wrapper{
    justify-content: center;
  }
  .hero-title{
    text-align: center;
    margin-bottom: 30px;
    font-size: 42px;
  }
}