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

body {
  background-color: #121212;
  color: #e0e0e0;
  font-family: "Roboto", sans-serif;
  line-height: 1.6;
}

.site-header {
  background-color: #1e1e1e;
  border-bottom: 3px solid #ff5e00;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

.site-nav ul li a {
  text-decoration: none;
  color: #e0e0e0;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.site-nav ul li a:hover {
  color: #ff5e00;
}

.logo img {
  height: 50px;
}

.content-section {
  width: 100%;
  height: calc(100vh - 80px);
}

.content-section iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.cookies-section {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #1e1e1e;
  padding: 15px 20px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.cookies-div p {
  font-size: 0.9rem;
  color: #e0e0e0;
}

.cookies-div button {
  background-color: #ff5e00;
  color: #121212;
  border: none;
  padding: 8px 12px;
  border-radius: 5px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookies-div button:hover {
  background-color: #e65c00;
}

.site-footer {
  background-color: #1e1e1e;
  padding: 40px 20px;
  margin-top: 40px;
  border-top: 3px solid #ff5e00;
}

.footer-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.footer-hours,
.footer-contact,
.footer-logo {
  flex: 1 1 300px;
}

.footer-hours h3,
.footer-contact h3,
.footer-logo p {
  color: #ff5e00;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.footer-hours p,
.footer-contact p {
  font-size: 1rem;
  color: #e0e0e0;
  margin-bottom: 5px;
}

.footer-logo img {
  height: 40px;
  margin-bottom: 10px;
}

.footer-links {
  width: 90%;
  max-width: 1200px;
  margin: 20px auto;
  text-align: center;
}

.footer-links ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links ul li a {
  text-decoration: none;
  color: #e0e0e0;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #ff5e00;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 0.85rem;
  color: #e0e0e0;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  animation: fade 9s infinite;
}

.slide:nth-child(2) {
  animation-delay: 3s;
}

.slide:nth-child(3) {
  animation-delay: 6s;
}

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

@keyframes fade {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  33.33% {
    opacity: 1;
  }
  43.33% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  color: #ffffff;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 30px;
}

.btn {
  background-color: #ff5e00;
  color: #121212;
  padding: 12px 25px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #e65c00;
}

.product-section {
  background-color: #1c1c1c;
  padding: 80px 20px;
  color: #fff;
  overflow: hidden;
}
.product-section .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}
.product-content {
  flex: 1 1 500px;
  opacity: 0;
  animation: slideInLeft 1s forwards;
}
.product-content h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: #ff5e00;
}
.product-content p {
  font-size: 1.2rem;
  line-height: 1.5;
  margin-bottom: 30px;
}
.product-image {
  flex: 1 1 400px;
  text-align: center;
  opacity: 0;
  animation: slideInRight 1s forwards;
}
.product-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}
.product-image img:hover {
  transform: scale(1.05);
}
.btn {
  background-color: #ff5e00;
  color: #1c1c1c;
  padding: 12px 30px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}
.btn:hover {
  background-color: #e65c00;
}
@keyframes slideInLeft {
  from {
    transform: translateX(-50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideInRight {
  from {
    transform: translateX(50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.unusual-product-section {
  background: linear-gradient(135deg, #29190c, #302b63, #24243e);
  color: #fff;
  padding: 80px 20px;
  overflow: hidden;
  position: relative;
}

.unusual-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.unusual-left {
  flex: 1 1 500px;
  animation: fadeIn 1.5s ease-out forwards;
}

.unusual-left h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: #ff5e00;
}

.unusual-left p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.advantages-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.advantages-list li {
  margin-bottom: 10px;
  font-size: 1.1rem;
  position: relative;
  padding-left: 25px;
}

.advantages-list li:before {
  content: "⚡";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2rem;
  color: #ff5e00;
}

.unusual-right {
  flex: 1 1 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
  animation: fadeIn 1.5s ease-out forwards;
}

.product-3d {
  transform: rotateY(0deg);
  transition: transform 1s ease-out;
}

.product-3d img {
  max-width: 100%;
  border-radius: 10px;
}

.product-3d:hover {
  transform: rotateY(20deg) rotateX(10deg);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.happy-customers {
  background: linear-gradient(135deg, #3c2c50, #af7f4c);
  color: #fff;
  padding: 80px 20px;
  overflow: hidden;
  position: relative;
}

.happy-customers .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.customer-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  animation: fadeIn 1.5s ease-out forwards;
}

.customer-photo {
  width: calc(25% - 20px);
  min-width: 200px;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}

.customer-photo img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.customer-photo:hover img {
  transform: scale(1.1);
}

.customer-testimonials {
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 1.5s ease-out forwards;
}

.customer-testimonials h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: #ff5e00;
}

.customer-testimonials p {
  font-size: 1.2rem;
  line-height: 1.6;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .customer-gallery {
    flex-direction: column;
    gap: 20px;
  }
  .customer-photo {
    width: 100%;
  }
}

.composition-section {
  background: linear-gradient(135deg, #1a1a1a, #333333);
  color: #e0e0e0;
  padding: 80px 20px;
  overflow: hidden;
  position: relative;
}

.composition-section .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.composition-section h2 {
  font-size: 2.8rem;
  color: #ff5e00;
  margin-bottom: 20px;
  animation: fadeInDown 1s ease-out;
}

.composition-section p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  animation: fadeInDown 1s ease-out;
}

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

.ingredient-item {
  background-color: #222;
  padding: 20px;
  border-radius: 10px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards;
}

.ingredient-item img {
  width: 80px;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.ingredient-item:hover img {
  transform: scale(1.1);
}

.ingredient-item h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #ff5e00;
}

.ingredient-item p {
  font-size: 1rem;
  line-height: 1.5;
  color: #ccc;
}

.ingredient-item:nth-child(1) {
  animation-delay: 0.3s;
}

.ingredient-item:nth-child(2) {
  animation-delay: 0.5s;
}

.ingredient-item:nth-child(3) {
  animation-delay: 0.7s;
}

.ingredient-item:nth-child(4) {
  animation-delay: 0.9s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.energizing-section {
  background: linear-gradient(135deg, #000000, #333333);
  color: #ffffff;
  padding: 80px 20px;
  overflow: hidden;
  text-align: center;
}

.energizing-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.energizing-section h2 {
  font-size: 2.8rem;
  color: #ff5e00;
  margin-bottom: 20px;
  animation: fadeInDown 1s ease-out;
}

.energizing-section p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  animation: fadeInDown 1s ease-out;
}

.energizing-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.energizing-item {
  width: calc(25% - 20px);
  min-width: 220px;
  background: #222222;
  border-radius: 10px;
  overflow: hidden;
  padding: 15px;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards;
  transition: transform 0.3s ease;
}

.energizing-item:hover {
  transform: translateY(0) scale(1.05);
}

.energizing-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 10px;
}

.energizing-item h3 {
  font-size: 1.2rem;
  color: #ff5e00;
}

.energizing-item:nth-child(1) {
  animation-delay: 0.3s;
}
.energizing-item:nth-child(2) {
  animation-delay: 0.5s;
}
.energizing-item:nth-child(3) {
  animation-delay: 0.7s;
}
.energizing-item:nth-child(4) {
  animation-delay: 0.9s;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .energizing-gallery {
    flex-direction: column;
    gap: 20px;
  }
  .energizing-item {
    width: 100%;
  }
}

.order-section {
  background: linear-gradient(135deg, #000000, #222222);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.order-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.order-info {
  animation: slideInDown 1s ease-out forwards;
}

.order-info h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: #ff5e00;
}

.order-info p {
  font-size: 1.2rem;
  line-height: 1.5;
  margin-bottom: 40px;
}

.order-form {
  width: 100%;
  animation: fadeIn 1.5s ease-out forwards;
}

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

.order-form input,
.order-form select,
.order-form textarea {
  padding: 12px 15px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  outline: none;
  background-color: #333333;
  color: #ffffff;
}

.order-form textarea {
  resize: vertical;
  min-height: 100px;
}

.order-form button {
  padding: 15px;
  background-color: #ff5e00;
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: bold;
  color: #000000;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.order-form button:hover {
  background-color: #e65c00;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
