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

body {
  font-family: 'CustomFont', Arial, sans-serif;
  background-color: #181818;
  color: #ddd;
  line-height: 1.6;
}

header {
  font-family: 'CustomFont', Arial, sans-serif;
  background-color: #222;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo {
  font-family: 'CustomFont', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: bold;
  color: #15d400;
  text-shadow: 0 0 10px #00ff00, 0 0 20px #1a7a00, 0 0 30px #1fa800;
}

header nav a {
  font-family: 'CustomFont', Arial, sans-serif;
  color: #ddd;
  margin-left: 20px;
  font-size: 1.2rem;
  text-decoration: none;
}

header nav a:hover {
  color: #089d00;
}


header nav a:hover,
.nav-link.active {
  color: #089d00;
}
.text-content {
  font-family: 'CustomFont', Arial, sans-serif;
  max-width: 50%;
  color: #fff;
  padding-right: 20px;
  text-align: left;
  z-index: 1;
}

.text-content h1 {
  font-family: 'CustomFont', Arial, sans-serif;
  font-size: 3rem;
  margin-bottom: 10px;
  text-shadow: 0 0 10px #8dc63f, 0 0 20px #8dc63f, 0 0 30px #8dc63f;
}

.text-content p {
  font-family: 'CustomFont', Arial, sans-serif;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.cta-btn {
  font-family: 'CustomFont', Arial, sans-serif;
  background-color: #8dc63f;
  color: #fff;
  padding: 25px 30px;
  font-size: 1.1rem;
  text-decoration: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cta-btn:hover {
  background-color: #72a632;
}



.image-content {
  position: absolute;
  right: 5%;

  top: 500px; 
  animation: moveImage 0.6s ease-out forwards;
}

.image-content img {
  max-width:650px;
  width: 100%;
  margin-top: 60px;
  height: auto;
  border-radius: 8px;
}


.hero {
  font-family: 'CustomFont', Arial, sans-serif;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px;
}
.hero-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  opacity: 0.3;
}

.hero-content {
  font-family: 'CustomFont', Arial, sans-serif;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
}

.hero h1 {
  font-family: 'CustomFont', Arial, sans-serif;
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero p {
  font-family: 'CustomFont', Arial, sans-serif;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.cta-btn {
  font-family: 'CustomFont', Arial, sans-serif;
  background-color: #8dc63f;
  color: #fff;
  padding: 15px 30px;
  font-size: 1.1rem;
  text-decoration: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cta-btn:hover {
  background-color: #72a632;
}

  .cart {
    padding: 40px 20px;
    background-color: #1a1a1a;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  }
  
  .cart-header {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .cart-header h1 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 0 0 10px #8dc63f, 0 0 20px #8dc63f;
  }
  
  .cart-header p {
    font-size: 1.1rem;
    color: #bbb;
  }
  
  .cart-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .cart-item {
    font-family: 'CustomFont', Arial, sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
  }
  
  .cart-item:hover {
    transform: translateY(-5px);
  }
  
  .cart-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
  }
  
  .item-details {
    font-family: 'CustomFont', Arial, sans-serif;
    flex: 1;
    padding: 0 20px;
  }
  
  .item-details h3 {
    font-family: 'CustomFont', Arial, sans-serif;
    font-size: 1.4rem;
    color: #fff;
  }



.product-detail {
  font-family: 'CustomFont', Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  background-color: #1a1a1a;
}

.product-container {
  display: flex;
  justify-content: space-between;
}


.product-images {
  flex: 1;
  margin-right: 20px;
}

.main-image {
  width: 100%;
  max-width: 600px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.thumbnail-images {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.thumbnail {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.thumbnail:hover {
  transform: scale(1.1);
}

.product-info,
.product-description {
    flex: 1;
}


.product-info {
  font-family: 'CustomFont', Arial, sans-serif;
  flex: 2;
  padding-left: 20px;
}

.product-info h1 {
  font-family: 'CustomFont', Arial, sans-serif;
  font-size: 2.5rem;
  color: #fff;
  text-shadow: 0 0 10px #8dc63f, 0 0 20px #8dc63f, 0 0 30px #8dc63f;
}

.product-info .product-tagline {
  font-family: 'CustomFont', Arial, sans-serif;
  font-size: 1.2rem;
  margin: 10px 0;
  color: #bbb;
}

.pricing-plans {
  font-family: 'CustomFont', Arial, sans-serif;
  display: flex;
  gap: 10px;
  margin-left: 2px;
  border-radius: 5px;

}

.plan {
  width: 250px;
  border-radius: 5px;
  padding: 15px;
  margin: 10px;
  border: 2px solid #00ff00;
  cursor: pointer;

  transition: background-color 0.3s, border-color 0.3s;
}

.plan:hover {
  border-color: #ffffff64;
}

.plan.selected {
  border: 3px solid rgba(255, 255, 255, 0.635);
  background-color: #2d2d2d;
}


.plan h3 {
  font-family: 'CustomFont', Arial, sans-serif;
  font-size: 0.9rem;
  color: #fff;
  
}

.plan input[type="radio"] {
  position: absolute;
  top: 10px;
  right: 10px;
  opacity: 0;
  cursor: pointer;
}

.plan input[type="radio"]:checked + .plan-label {
  background-color: #27ae60;
  border-color: #27ae60;
}

.plan-label {
  display: block;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
}

.plan-label:hover {
  background-color: #45b049;
  transform: scale(1.05);
}

.btn {
  font-family: 'CustomFont', Arial, sans-serif;
  background-color: #8dc63f;
  color: #fff;
  padding: 12px 20px;
  font-size: 1.1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 10px;
}

.btn:hover {
  background-color: #72a632;
}


.product-description {
  font-family: 'CustomFont', Arial, sans-serif;
  max-width: 500px;
  width: 100%;
  text-align: left;
  margin-top: 30px;
}

.product-description h3 {
  font-family: 'CustomFont', Arial, sans-serif;
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #fff;
}

.product-description p {
  font-family: 'CustomFont', Arial, sans-serif;
  font-size: 1.1rem;
  color: #bbb;
}

  
  .btn {
    font-family: 'CustomFont', Arial, sans-serif;
    background-color: #8dc63f;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .btn:hover {
    background-color: #72a632;
  }
  
  .cart-total {
    font-family: 'CustomFont', Arial, sans-serif;
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid #444;
  }
  
  .cart-total h3 {
    font-family: 'CustomFont', Arial, sans-serif;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 20px;
  }
  
  .cta-btn {
    font-family: 'CustomFont', Arial, sans-serif;
    background-color: #8dc63f;
    color: #fff;
    padding: 15px 30px;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .cta-btn:hover {
    background-color: #72a632;
  }
  
footer {
  font-family: 'CustomFont', Arial, sans-serif;
  background-color: #222;
  padding: 20px;
  text-align: center;
  color: #bbb;
  margin-top: 40px;
}

footer p {
  font-family: 'CustomFont', Arial, sans-serif;
  font-size: 1rem;
}

@font-face {
  font-family: 'CustomFont';
  src: url('Fonts/PetrovSans-SemiBoldItalic.ttf') format('truetype');
}
.coupon-banner {
  background-color: #202020;  

  color: #ffffff;
  padding: 15px 30px; 
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: none;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  font-size: 20px; 
  font-family: 'Custom Font';
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.5s ease-out;

}

@keyframes slideDown {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}

.coupon-banner:hover {
  background-color: #444444;  
  cursor: pointer;
}


  
@media (max-width: 768px) {
  .product-container {
    flex-direction: column;
    align-items: center;
  }

  .product-images {
    margin-bottom: 20px;
    padding-right: 0;
  }

  .product-info {
    text-align: center;
  }

  .pricing-plans {
    flex-direction: column;
    align-items: center;
  }

  .plan {
    margin-bottom: 20px;
    width: 100%;
  }
}


@keyframes moveImage {
  0% {
    top: -100%;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}

