@charset "UTF-8";
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  padding-top: 80px;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* Horizontal scroll-u gizlət */
  width: 100%; /* Ekranda boşluqları aradan qaldırır */
}

/* Modal background */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: "Arial", sans-serif;
  animation: fadeOut 1s ease 2s forwards;
}

.logo-text span {
  display: inline-block;
  font-size: 88px;
  font-weight: bold;
  color: #9D1E33;
  opacity: 0;
  transform: translateY(20px);
  animation: letterAppear 0.5s forwards;
}

.logo-text span:nth-child(1) {
  animation-delay: 0s;
}

.logo-text span:nth-child(2) {
  animation-delay: 0.1s;
}

.logo-text span:nth-child(3) {
  animation-delay: 0.2s;
}

.logo-text span:nth-child(4) {
  animation-delay: 0.3s;
}

.logo-text span:nth-child(5) {
  animation-delay: 0.4s;
}

.logo-text span:nth-child(6) {
  animation-delay: 0.5s;
}

.logo-text span:nth-child(7) {
  animation-delay: 0.6s;
}

.logo-text span:nth-child(8) {
  animation-delay: 0.7s;
}

.slogan {
  margin-top: 20px;
  font-size: 28px;
  color: #ffd251;
  opacity: 0;
  transform: translateY(10px);
  animation: sloganFade 1s ease 0.5s forwards;
}

/* Animations */
@keyframes letterAppear {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes sloganFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}
.floating-icons {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 999;
  overflow: hidden;
}

.icon {
  position: absolute;
  font-size: 26px;
  color: #8b5e3c;
  opacity: 0.5;
}

/* İkonların fərqli yerlərdə və trayektoriyalarda olması */
.icon1 {
  top: 5%;
  left: 10%;
  animation: float1 12s infinite linear;
}

.icon2 {
  top: 80%;
  left: 20%;
  animation: float2 15s infinite ease-in-out;
}

.icon3 {
  top: 30%;
  left: 75%;
  animation: float3 18s infinite ease-in;
}

.icon4 {
  top: 60%;
  left: 50%;
  animation: float4 20s infinite ease-out;
}

.icon5 {
  top: 40%;
  left: 30%;
  animation: float5 22s infinite ease-in-out;
}

.icon6 {
  top: 70%;
  left: 80%;
  animation: float6 25s infinite linear;
}

/* Hərəkət animasiyaları */
@keyframes float1 {
  0% {
    transform: translate(0, 0) rotate(54deg);
    color: #25d366;
  }
  50% {
    transform: translate(130px, -540px) rotate(180deg);
    color: #9D1E33;
  }
  100% {
    transform: translate(0, 0) rotate(360deg);
    color: #ccc;
  }
}
@keyframes float2 {
  0% {
    transform: translate(0, 0) scale(1);
    color: #9D1E33;
  }
  50% {
    transform: translate(-140px, -490px) scale(1.2);
    color: #ff9900;
  }
  100% {
    transform: translate(0, 0) scale(1);
    color: #fff;
  }
}
@keyframes float3 {
  0% {
    transform: translate(0, 0) rotate(0deg);
    color: black;
  }
  50% {
    transform: translate(-150px, 50px) rotate(180deg);
    color: #9D1E33;
  }
  100% {
    transform: translate(0, 0) rotate(180deg);
    color: #444;
  }
}
@keyframes float4 {
  0% {
    transform: translate(0, 0);
    color: #9D1E33;
  }
  50% {
    transform: translate(460px, -20px);
    color: #ff9900;
  }
  100% {
    transform: translate(350px, 120px);
    color: white;
  }
}
@keyframes float5 {
  0% {
    transform: translate(0, 0) rotate(0);
    color: red;
  }
  50% {
    transform: translate(-350px, 440px) rotate(270deg);
    color: #9D1E33;
  }
  100% {
    transform: translate(0, 0) rotate(360deg);
    color: #ff9900;
  }
}
@keyframes float6 {
  0% {
    transform: translate(0, 0);
    color: #ff9900;
  }
  50% {
    transform: translate(350px, -250px);
    color: #9e1e33;
  }
  100% {
    transform: translate(0, 0);
    color: #25d366;
  }
}
/* Bannerin ümumi tərtibatı */
.discount-banner {
  position: fixed;
  top: 100px;
  left: 0;
  width: 100%;
  background-color: #ffd251; /* Endirim bannerinin arxa fonu */
  color: white;
  text-align: center;
  padding: 15px;
  font-size: 18px;
  z-index: 1000; /* Saytda digər elementlərin üzərində */
  display: none; /* Başlanğıcda gizlətmək */
}

/* Banner məzmununun stilləri */
.discount-banner .banner-content {
  max-width: 1200px;
  margin: 0 auto;
}

.discount-banner .btn {
  background-color: #fff;
  color: #9D1E33;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  margin-top: 10px;
}

.discount-banner.show {
  display: block; /* Banneri görünür etmək */
  animation: slideDown 1s ease-out;
}

/* Animasiya */
@keyframes slideDown {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
.whatsapp-icon {
  position: fixed;
  bottom: 20px; /* Ekranın alt küncündə */
  right: 20px; /* Ekranın sağ küncündə */
  background-color: #25d366; /* WhatsApp-ın yaşıl rəngi */
  padding: 15px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  animation: bounce 1s infinite alternate; /* Animasiya */
}

.whatsapp-icon i {
  font-size: 30px;
  color: white;
}

@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .whatsapp-icon {
    bottom: 10px;
    right: 10px;
    padding: 12px;
  }
  .loader {
    text-align: center;
  }
  .logo-text span {
    font-size: 50px;
    margin: auto;
  }
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.85);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 0px;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}
.site-header .logo {
  margin-left: 100px;
}
.site-header .nav-links {
  display: flex;
  align-items: center;
  gap: 100px;
  margin-right: 50px;
}
.site-header .nav-links a {
  text-decoration: none;
  font-weight: 500;
  color: #bc3243;
  position: relative;
  transition: 0.5s ease-in-out;
}
.site-header .nav-links a:hover {
  color: #ffd251;
}

.hero {
  height: 100vh;
  background-image: url("img/IMG_5214.JPG");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffd251;
  padding: 0 20px;
  transition: background-position 0.2s ease;
}
.hero .hero-content {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 40px;
  border-radius: 20px;
}
.hero .hero-content h1 {
  font-size: 42px;
  font-family: Arial, Helvetica, sans-serif;
  margin-bottom: 20px;
  border: 1px solid white;
  border-radius: 30px;
  padding: 10px;
}
.hero .hero-content p {
  font-family: Arial;
  font-weight: bold;
  font-size: 30px;
  color: #ffd251;
  border-radius: 30px;
  padding: 10px;
}

.products-section {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 90%;
  margin: 50px auto;
}

.product-card {
  display: none;
}

.product-card.active {
  display: block;
}

.tabs {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.tab-btn {
  background: #9e1e33;
  border: none;
  color: white;
  padding: 15px 20px;
  border-radius: 20px;
  font-family: monospace;
  font-size: 20px;
  margin: 0 5px;
  cursor: pointer;
}

.tab-btn.active {
  background-color: #ffd251;
  color: #fff;
}

.product-card {
  width: 29%;
  background: white;
  padding: 6px;
  border-radius: 20px;
  box-shadow: 0 0 100px rgba(0, 0, 0, 0.1);
  position: relative;
  border: 1px solid #ffd251;
  transition: 1s ease-in-out;
}
.product-card:hover {
  transform: scale(1.1);
}

.product-slider {
  position: relative;
  overflow: hidden;
  height: 490px;
}

.slider-images {
  display: flex;
  transition: transform 0.5s ease;
}

.slider-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.slider-buttons {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 999;
}

.slider-buttons i {
  font-size: 18px;
  color: #ffd251;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px;
  border-radius: 20px;
  cursor: pointer;
}

.product-info {
  padding: 10px;
  text-align: center;
}

.product-info h3 {
  font-size: 22px;
  border: 1px solid #bc3243;
  border-radius: 20px;
  padding: 5px;
  width: 50%;
  margin: auto;
  color: #bc3243;
  cursor: pointer;
  transition: 0.5s ease-in;
}
.product-info h3:hover {
  background-color: #bc3243;
  color: white;
}

.price {
  font-size: 32px;
  color: #ffd251;
}

.icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  z-index: 999;
  margin-top: 10px;
}

.icons i {
  z-index: 9999;
  font-size: 20px;
  cursor: pointer;
  border: 1px solid #bc3243;
  padding: 10px;
  border-radius: 10px;
}

.testimonial-section {
  background: #fdfdfd;
  padding: 60px 20px;
  text-align: center;
}

.testimonial-container {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.testimonial {
  display: none;
  transition: all 0.5s ease;
  padding: 20px;
  border-radius: 15px;
  background-color: #fffbea;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.testimonial.active {
  display: block;
}

.testimonial img {
  width: 90px;
  height: 90px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}

.testimonial h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #bc3243;
}

.testimonial p {
  font-size: 16px;
  font-style: italic;
}

.stars {
  margin-top: 10px;
  font-size: 18px;
  color: gold;
}

.slider-buttons {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
}

.slider-buttons button {
  background: rgba(0, 0, 0, 0.4);
  color: white;
  border: none;
  font-size: 24px;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.3s;
}

.slider-buttons button:hover {
  background: rgba(0, 0, 0, 0.7);
}

.contact-section {
  background-color: #fdfdfd;
  padding: 60px 20px;
  font-family: "Arial", sans-serif;
  color: #333;
}

.contact-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.contact-container h2 {
  width: 100%;
  text-align: center;
  font-size: 32px;
  color: #bc3243;
  margin-bottom: 20px;
}

.contact-container form {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-container form label {
  font-weight: bold;
  color: #444;
}

.contact-container form input,
.contact-container form textarea {
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  resize: none;
}

.contact-container form button {
  background-color: #bc3243;
  color: white;
  padding: 14px;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-container form button:hover {
  background-color: #9e1e33;
}

.contact-info {
  flex: 1 1 35%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  background: #f2f2f2;
  padding: 20px;
  border-radius: 10px;
}

.contact-info p {
  color: #9e1e33;
  font-size: 16px;
  line-height: 1.6;
}

/* Footer Styles */
.footer {
  background-color: #1d1d1d;
  color: #fff;
  padding: 20px;
  font-family: "Arial", sans-serif;
  text-align: center;
  border-top-left-radius: 300px;
  border-top-right-radius: 300px;
}
.footer .footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 30px;
  padding: 20px;
}
.footer .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #9e1e33;
  border-radius: 300px;
  padding: 10px 20px;
}
.footer .footer-logo img.logo {
  width: 100px;
  height: auto;
}
.footer .footer-logo h3 {
  font-size: 24px;
  font-weight: bold;
  color: #ff9900;
}
.footer .footer-about p {
  font-size: 16px;
  color: #ccc;
  max-width: 450px;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  border: 1px solid white;
  padding: 20px;
  border-radius: 300px;
}
.footer .footer-about p:hover {
  color: white;
}
.footer .footer-socials {
  display: flex;
  gap: 20px;
  border: 1px solid white;
  border-radius: 300px;
  padding: 20px;
  justify-content: center;
}
.footer .footer-icon {
  background-color: #333;
  border-radius: 50%;
  padding: 12px;
  transition: all 0.3s ease;
}
.footer .footer-icon i {
  color: #fff;
  font-size: 24px;
}
.footer .footer-icon:hover {
  transform: translateY(-10px);
  background-color: #9e1e33;
}
.footer .footer-icon.instagram:hover i, .footer .footer-icon.tiktok:hover i {
  color: white;
}
.footer .footer-bottom {
  margin-top: 30px;
  font-size: 14px;
  color: #ccc;
}
.footer .footer-bottom p {
  margin: 0;
  cursor: pointer;
  transition: 1s ease-in-out;
}
.footer .footer-bottom p:hover {
  color: white;
}
@media (max-width: 768px) {
  .footer .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer .footer-logo {
    justify-content: center;
  }
  .footer .footer-about p {
    max-width: 100%;
  }
  .footer .footer-socials {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.footer #chatbot-toggle {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: linear-gradient(135deg, #e1ce3f, #e5be0d);
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  z-index: 999;
}
.footer #chatbot {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 320px;
  background: white;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  display: none;
  flex-direction: column;
  font-family: "Segoe UI", sans-serif;
  z-index: 1000;
}
.footer #chat-header {
  background: #9e1e33;
  color: white;
  padding: 14px;
  font-weight: bold;
  font-size: 16px;
}
.footer #chat-body {
  padding: 12px;
  max-height: 400px;
  overflow-y: auto;
}
.footer .bot-message, .footer .user-message {
  background: #ff9e2c;
  padding: 10px 14px;
  margin: 8px 0;
  border-radius: 10px;
  max-width: 90%;
  font-size: 14px;
  animation: fadeIn 0.4s ease;
}
.footer .user-message {
  background: #ff9e2c;
  align-self: flex-end;
  text-align: right;
}
.footer .options {
  display: flex;
  flex-direction: column;
}
.footer .options button {
  background-color: #4e342e;
  color: white;
  border: none;
  padding: 10px;
  margin-top: 6px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  transition: 0.2s;
}
.footer .options button:hover {
  background-color: #6d4c41;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 480px) {
  .footer .footer-logo h3 {
    font-size: 20px;
  }
  .footer .footer-about p {
    font-size: 14px;
    padding: 15px;
  }
  .footer .footer-icon i {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }
  .site-header .nav-links {
    display: none;
  }
  .site-header {
    justify-content: center; /* Menyu gizlənəndə logo ortada olsun */
  }
  .site-header .logo {
    margin: 0 auto;
  }
  .nav-links {
    display: none;
  }
  .logo {
    margin-left: 20px;
  }
  .hero .hero-content h1 {
    font-size: 26px;
  }
  .hero .hero-content p {
    font-size: 18px;
  }
  .products-section {
    flex-direction: column;
    align-items: center;
  }
  .product-card {
    width: 90%;
  }
  .contact-container {
    flex-direction: column;
    align-items: center;
  }
  .contact-container form,
  .contact-info {
    flex: 1 1 100%;
    width: 100%;
  }
  .testimonial-container {
    width: 100%;
    padding: 0 10px;
  }
  .testimonial img {
    width: 70px;
    height: 70px;
  }
  .product-info h3 {
    width: 80%;
  }
}
/* Modal əsas stillər */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  position: relative;
  max-width: 350px;
  width: 90%;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

#wheel {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 10px solid #2e2e2e;
  margin: 20px auto;
  position: relative;
  background: conic-gradient(#f39c12 0% 25%, #2ecc71 25% 50%, #e74c3c 50% 75%, #3498db 75% 100%);
  animation: spin 0s ease;
}

.text {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-weight: bold;
  text-shadow: 1px 1px 3px black;
}

.promotion-code {
  margin-top: 15px;
  font-size: 16px;
  color: #2e2e2e;
}

#spin-btn {
  margin-top: 20px;
  padding: 10px 25px;
  font-size: 16px;
  background-color: #2e2e2e;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#spin-btn:hover {
  background-color: #444;
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;
  font-size: 20px;
  color: #aaa;
}

/* Sabit çarx düyməsi */
#spin-trigger {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #e5be0d;
  color: black;
  padding: 10px 15px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transition: 0.5s ease-in-out;
}

#spin-trigger:hover {
  background-color: #444;
  color: white;
}

#spin-trigger i {
  font-size: 18px;
}/*# sourceMappingURL=style.css.map */