body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    min-height: 100vh;
    
    flex-direction: column;
}
 .main-header {
    background-color: rgba(45, 43, 41, 1);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;  
    width: 100%;
}
h1{
    padding-left: 0px;
    color:#2d2b29;
}
.main-content h5{
  padding-left: 0px;
  color:#2d2b29;
  font-size: 30px;
}
.culka{
    color:#fecc7f;
    }
.header-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    display: flex;

    align-items: center;

}
.logo-image {
    width: 160px;
    height: 48px;
}
.company-name {
    font-size: clamp(1.2rem, 4vw, 1.5rem);
    font-weight: bold;
    color: #f48222;
}
.contact-info {
    display: flex;
    align-items: center;
    justify-content: center; 
    gap: 30px; 
}
.phone-number {
    color: #f48222;
    text-decoration: none;
    font-size: 25px;
    font-weight: bold;
    transition: color 0.5s ease-in-out;
}
.phone-number:hover {
    color: #ffffff;
}
.related-products {
    margin-top: 50px;
}
.related-products-grid {
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));  
    display: flex;
    gap: 20px;
}
.related-product-card {
  width: 150px;
  cursor: pointer;
  background-color: #ffffff;
  transition: transform 0.3s;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.related-product-card:hover {
    transform: scale(1.05);
}
.related-product-card img {
    width: 151px;
    height: 150px;
    object-fit: cover;
    margin-bottom: 10px;
    border-radius: 5px;
}
.related-product-card h4 {
    font-size: 1em;
    
    text-align: center;
    margin: 0;
}
.price {
  color: #000;
}
.related-product-card .product-price {
    font-size: 16px;
    margin: 7px 0 5px 0;
    text-align: center;
    color: #f48222;
}
.smoke-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: -1;  
}
.product-colors {
  margin-top: 10px;
  text-align: center;
}
.color-options {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 5px;
}
.product-colors p{
  color: #2d2b29;
  font-weight: bold;
  margin-top: 0px;
}
.cart-modal {
  display: none; /* приховано за замовчуванням */
  position: fixed;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
background: rgb(131,131,131);
  padding: 3px;
  border-radius: 8px;
  z-index: 1000;
  width: 420px;
}

.cart-modal__content {
  background: #fff;
  padding: 20px;
  border-radius: 6px;
  text-align: center;
}

.cart-modal__message {
  color: #333; /* темно-сірий колір тексту */
  font-size: 16px;
  margin-bottom: 15px;
}

.cart-modal__image {
  max-width: 120px;
  display: block;
  margin: 10px auto;
}

.cart-modal__close-button {
  background: #f98414; /* оранжева кнопка */
  color: #fff;
  border: none; /* без бордеру */
  padding: 5px 10px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
}

.cart-modal__close-button:hover {
  background: #e8730e;
}

/* ============================================
   Отзывы товаров
============================================ */
.modal{
    display: none;  
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
  }
.modal.open {
    display: flex;
  }
.closes {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 24px;
    cursor: pointer;
  }
    /* ============================================
   модальне окно відгуків цсет окна
============================================ */
.modal-content10 {
    background: #fcf7f3;
    background-size: 300% 300%;
    animation: gradientBG 6s ease infinite;
    padding: 30px 40px;
    width: 600px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 0 15px rgba(245, 127, 17, 0.5), 
                0 0 30px rgba(255, 190, 12, 0.3);
    border: 2px solid rgba(255, 145, 0, 0.5);
  }
.modal-content10 h2{
  color: #000;
}
.site-modal-content10 {
  background: #fcf7f3;
  background-size: 300% 300%;
  animation: gradientBG 6s ease infinite;
  padding: 30px 40px; 
  width: 600px;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 0 15px rgba(245, 127, 17, 0.5), 
              0 0 30px rgba(255, 190, 12, 0.3);
   border: 2px solid rgba(255, 145, 0, 0.5);
}
#siteReviewModal.modal {
  display: none;  
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);  
}
#siteReviewModal .modal-content10 {
  background: #fcf7f3;
  background-size: 300% 300%;
  animation: gradientBG 6s ease infinite;
  padding: 30px 40px;
  width: 600px;
  max-width: 90%;  
  border-radius: 12px;
  position: relative;
  margin: 10% auto;  
  box-shadow: 0 0 15px rgba(245, 127, 17, 0.5),
              0 0 30px rgba(255, 190, 12, 0.3);
  border: 2px solid rgba(255, 145, 0, 0.5);
  color: #000;
  text-align: left;
}
#siteReviewModal .modal-content10 h2 {
  margin-top: 0;
  font-size: 24px;
  color: #000;
}
#siteReviewModal .site-close {
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 28px;
}
#siteReviewList {
  max-height: 250px;
  overflow-y: auto;
  margin-bottom: 20px;
  border-top: 1px solid #ddd;
  padding-top: 10px;
}
.site-review-item {
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f0f0f0;
  color: #000;
}
#siteReviewForm input[type="text"],
#siteReviewForm textarea {
  width: 95%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  color: #000;
}
#siteReviewForm button {
  width: 100%;
  padding: 10px;
  background-color: #2d2b29;
  border: none;
  color: #fd840e;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}
#siteReviewForm button:hover {
  background-color: #464443;
}
.site-rating {
  font-size: 28px;   
  margin-bottom: 15px;
  text-align: left;
}
.site-star {
  color: #ddd;
  cursor: pointer;
  padding: 0 3px;
  transition: color 0.2s ease;
  font-size: 28px;   
}
.site-star:hover,
.site-star.active {
  color: #ffd700;
}
.site-review-rating {
  color: #ffd700;
  margin: 5px 0;
}
#showSiteReviewsBtn {
  padding: 10px 88px;
  max-width: 300px;
  background-color: #ff9800;
  border: none;
  color: #2e2c2a;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  transition: background-color 0.2s ease-in-out;
  margin-top: 30px;
}
#showSiteReviewsBtn:hover {
  background-color: #e68900;
}
@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.color-container {
    display: flex;
    gap: 5px;
    margin-top: 5px;
}
.order-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
}
.order-modal-content {
  background-color: #fff;
  padding: 20px;
  width: 300px;
  margin: 15% auto;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
}
.order-close {
  float: right;
  font-size: 20px;
  cursor: pointer;
}
.color-box {
  width: 35px;
  height: 35px;
  border-radius: 4px;
  border: 1px solid #ccc;
  transition: transform 0.2s ease, box-shadow 0.2s ease-in-out;
}
.color-box:hover {
  transform: scale(1.2);
  box-shadow: 0 0 15px var(--color, transparent);
}
.modal01 {
  display: none;  
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.modal01[style*="display: block"] {
    display: flex !important;  
    justify-content: center;
    align-items: center;
}
@keyframes modalAppear {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
  }
.close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 15px;
    top: 10px;
    cursor: pointer;
  }
.close:hover,
  .close:focus {
    color: #000;
  }
.modal-content h2 {
    margin-top: 0;
    text-align: center;
    font-size: 24px;
    color: #333;
  }
#reviewList {
    max-height: 250px;
    overflow-y: auto;
    margin-bottom: 20px;
    border-top: 1px solid #ddd;
    padding-top: 10px;
  }
.review-item {
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
  }
 #reviewForm input[type="text"],
  #reviewForm textarea {
    width: 95%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
  }
  #reviewForm button {
    width: 100%;
    padding: 10px;
    background-color: #2d2b29;
    border: none;
    color: #fd840e;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
  }
  #reviewForm button:hover {
    background-color: #464443;
  }
 .reviews-button {
    padding: 10px 20px;
    max-width: 300px;
    background-color: #ff9800;
    border: none;
    color: #2e2c2a;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: background-color 0.2s ease-in-out;
    margin-top: 0px;
  }
  .reviews-button:hover {
    background-color: #e68900;
  }
.rating {

    font-size: 24px;
    margin-bottom: 15px;
    text-align: center;
    }
.star {
    color: #ddd;
    cursor: pointer;
    padding: 0 2px;
    transition: color 0.2s ease;
    }
.star:hover,
.star.active {
    color: #ffd700;
}
.review-rating {
    color: #ffd700;
    margin: 5px 0;
}
/* ============================================
   Поиск поле ввода
============================================ */
.search-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 10px;
  }
.search-input {
    width: 100%;
    padding: 10px 15px;
    border: 2px solid #f48222;
    border-radius: 25px;
    font-size: 16px;
    background-color: white;
    color: #333;
    transition: all 0.3s ease;
  }
.search-input:focus {
    outline: none;
    box-shadow: 0 0 5px rgba(244, 130, 34, 0.5);
  }
 .search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-height: 400px;
    overflow-y: auto;
    display: none;
    z-index: 1000;
  }
  .search-result-item {
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
  }
 .search-result-item:hover {
   background-color: #f5f5f5;
  }
  .search-result-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
  }
  .search-result-info {
    flex: 1;
  }
  .search-result-name {
    font-weight: bold;
    margin-bottom: 4px;
  }
  .search-result-price {
    color: #f48222;
  }
  /* ============================================
   MЛоготип телеграм
============================================ */
.logotg img {
    transition: filter 0.5s ease-in-out;
}

.logotg:hover img {
    filter: brightness(0) invert(1);
}

/* ============================================
   Стили главного меню
============================================ */
 .main-content {
    flex: 1;
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
}
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(10px, 2vw, 20px);
    padding: clamp(10px, 2vw, 20px);
}
.category-card {
    background: white;
    padding: clamp(15px, 3vw, 20px);
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
}
.category-card:hover {
    transform: translateY(-5px) rotateX(10deg);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}
.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(52, 152, 219, 0.1), rgba(41, 128, 185, 0.2));
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.category-card:hover::before {
    opacity: 1;
}
.availability-bar {
  width: 100%;
  text-align: center;
  padding: 5px;
  font-weight: bold;
  color: white;
}
.category-card h2 {
    color: #2c3e50;
    margin-bottom: 10px;
    position: relative;
    transform: translateZ(20px);
}
.category-card p {
    color: #666;
    position: relative;
    transform: translateZ(30px);
}

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.2s;
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    transform: translateY(-5px);
}
.product-card img {
    width: 100%;
    height: 290px;
    object-fit: cover;
}
.product-card h3 {
    margin: 0px;
    color: #2c3e50;
    font-size: clamp(1.1rem, 3vw, 1.3rem);
}
.product-card p {
    text-align: center;
    margin: 0px 15px 15px;
    color: #666;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    font-weight: bold;
    
}
.product-price {
    margin-right: 10px;
    
    font-size: clamp(1.2rem, 3.5vw, 1.5rem);
    color: #f48222;
    font-weight: bold;
}

.name-price{
    display: flex;
    margin: 20px;
    align-items: center;
    justify-content: space-between;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(10px, 2vw, 20px);
  padding: clamp(10px, 2vw, 20px);
   justify-content: center;  
}

.products-grid:has(:only-child) {
  grid-template-columns: 1.5fr 2.5fr;  
}

/* ============================================
  Фильтр для жижи
============================================ */
.volume-filters {
    margin-bottom: 20px;
    text-align: center;
}
.volume-filters a {
    margin: 0 10px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    padding: 5px 10px;
    border: 2px solid rgba(255, 145, 0, 0.5);
    border-radius: 4px;
    box-shadow: 0 0 15px rgba(245, 127, 17, 0.5), 
    0 0 30px rgba(255, 190, 12, 0.3);
}
.volume-filters span {
  color: #2d2b29;
  font-weight: bold;
  
}
.volume-filters a.active,
.volume-filters a:hover {
    background-color: #fd8215;
    color: #2d2b29;
    font-weight: bold;
    border-color: #f0903d;
    box-shadow: 0 0 15px rgba(245, 127, 17, 0.5), 
    0 0 30px rgba(255, 190, 12, 0.3);

border: 2px solid rgba(255, 145, 0, 0.5);
}

.resistance-filters {
    margin-bottom: 20px;
    text-align: center;
    display: flex;
    flex-wrap: wrap; /* Дозволяє кнопкам переноситися на новий рядок */
    justify-content: center; /* Вирівнюємо кнопки по центру */
    gap: 8px; /* Відстань між кнопками */
}
.resistance-filters a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    padding: 2px 7px;
    border: 2px solid rgba(255, 145, 0, 0.7);
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(245, 127, 17, 0.5);
    transition: all 0.3s;
    background-color: rgba(255, 255, 255, 0.1);
    display: inline-block;
    line-height: 25px;
}
.resistance-filters span {
    display:none;
color: #2d2b29;
font-weight: bold;

}
.resistance-filters a.active,
.resistance-filters a:hover {
  background-color: #fd8215;
  color: #2d2b29;
  font-weight: bold;
  border-color: #f0903d;
  box-shadow: 0 0 15px rgba(245, 127, 17, 0.5), 
  0 0 30px rgba(255, 190, 12, 0.3);

border: 2px solid rgba(255, 145, 0, 0.5);
}






/* ============================================
   Кнопка назад в меню
============================================ */
.back-button {
    background: none;
    border: none;
    color: #000000;
    cursor: pointer;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    padding: 10px 0;
    margin-bottom: 20px;
}
.back-button:hover {
    color: #fd8215;
}
.product-details {
    background: white;
    padding: clamp(15px, 3vw, 30px);
    border-radius: 8px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(20px, 4vw, 30px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
/* ============================================
   Карточки товарів
============================================ */
.product-image img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    border-radius: 4px;
}
.product-info h2 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: clamp(1.3rem, 4vw, 1.8rem);
}
.product-info h3 {
  color: #f48222;
  margin: 20px 0 10px;
  font-size: clamp(1.1rem, 3vw, 1.3rem);
}
.product-description p {
    color: #333333;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
}
.product-specs ul {
    list-style: none;
    padding: 0;
}
.product-specs li {
    color: #4b4b4b;
    margin-bottom: 8px;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
}
/* ============================================
   Кнопка замовити
============================================ */
.add-to-cart-btn {
    background-color: #27ae60;
    color: white;
    border: none;
    padding: clamp(10px, 2vw, 12px) clamp(20px, 4vw, 24px);
    border-radius: 4px;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s;
    width: 100%;
    max-width: 300px;
    text-decoration: none;
}
.add-to-cart-btn:hover {
    background-color: #219a52;
}
.add-to-cart-btn1 {
    background-color: #2d2b29;
    color: #fd820e;
    border: none;
    padding: clamp(10px, 2vw, 12px) clamp(20px, 4vw, 24px);
    border-radius: 4px;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s;
    width: 100%;
    max-width: 300px;
    text-decoration: none;
}
.add-to-cart-btn1:hover {
    background-color: #219a52;
}
/* ============================================
   Космо кнопка
============================================ */
 .text {
    translate: 2% -6%;
    letter-spacing: 0.01ch;
    color: #d6ded6;
    z-index: 999;
    padding: 0 34px;
    font-weight: 600;
  }
  .text::before {
    content: "";
    position: absolute;
    top: -290%;
    left: 90%;
    rotate: -45deg;
    width: 5em;
    height: 1px;
    background: linear-gradient(90deg, #ffffff, transparent);
    animation: 4s shootingStar ease-in-out infinite;
    transition: 1s ease;
    z-index: -1;
    animation-delay: 1s;
    display: none;
  }
  .text::after {
    content: "";
    display: none;
    position: absolute;
    top: -290%;
    left: 10%;
    rotate: -45deg;
    width: 5em;
    height: 1px;
    background: linear-gradient(90deg, #ffffff, transparent);
    animation: 7s shootingStar ease-in-out infinite;
    animation-delay: 3s;
  }
  .space-button:hover .text::before,
  .space-button:hover .text::after {
    display: block;
  }
  
  /* Контейнер для цін */
.product-pricing {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Стара ціна (перекреслена) */
.old-price {
    font-size: 16px;
    color: #777;
    display: flex;
    align-items: center;
}

.old-price s {
    font-size: 18px;
    color: #999;
    margin-right: 10px;
}

/* Таймер знижки */
.discount-timer {
    font-size: 14px;
    color: red;
    font-weight: bold;
}

/* Основна ціна (червона) */
.discounted-price {
    font-size: 22px;
    font-weight: bold;
    color: red;
}

  .galaxy::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    opacity: 1;
    box-shadow:
      140px 20px #fff,
      425px 20px #fff,
      70px 120px #fff,
      20px 130px #fff,
      110px 80px #fff,
      280px 80px #fff,
      250px 350px #fff,
      280px 230px #fff,
      220px 190px #fff,
      450px 100px #fff,
      380px 80px #fff,
      520px 50px #fff;
    z-index: -1;
    transition: all 1.5s ease-in-out;
    animation: 1s glowing-stars linear alternate infinite;
    animation-delay: 0.4s;
  }
  .galaxy::after {
    content: "";
    position: absolute;
    top: -150px;
    left: -65px;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    opacity: 1;
    box-shadow:
      490px 330px #fff,
      420px 300px #fff,
      320px 280px #fff,
      380px 350px #fff,
      546px 170px #fff,
      420px 180px #fff,
      370px 150px #fff,
      200px 250px #fff,
      80px 20px #fff,
      190px 50px #fff,
      270px 20px #fff,
      120px 230px #fff,
      350px -1px #fff,
      150px 369px #fff;
    z-index: -1;
    transition: all 2s ease-in-out;
    animation: 1s glowing-stars linear alternate infinite;
    animation-delay: 0.8s;
  }
  .space-button {
    --cut: 0.1em;
    --active: 0;
    --bg: radial-gradient(
          120% 120% at 126% 126%,
          hsl(0 calc(var(--active) * 97%) 98% / calc(var(--active) * 0.9)) 40%,
            transparent 50%
        )
        calc(100px - (var(--active) * 100px)) 0 / 100% 100% no-repeat,
      radial-gradient(
          120% 120% at 120% 120%,
          hsl(0 calc(var(--active) * 97%) 70% / calc(var(--active) * 1)) 30%,
            transparent 70%
        )
        calc(100px - (var(--active) * 100px)) 0 / 100% 100% no-repeat,
      hsl(0 calc(var(--active) * 100%) calc(12% - (var(--active) * 8%)));  
    background: var(--bg);
    font-size: 1.4rem;
    font-weight: 500;
    border: 0;
    cursor: pointer;
    padding: 0.9em 1.3em;
    display: flex;
    align-items: center;
    gap: 0.25em;
    white-space: nowrap;
    border-radius: 2rem;
    position: relative;
    box-shadow:
      0 0 calc(var(--active) * 6em) calc(var(--active) * 3em)
        hsla(12, 97%, 61%, 0.3),
      0 0.05em 0 0
        hsl(0, calc(var(--active) * 97%), calc((var(--active) * 50%) + 30%)) inset,
      0 -0.05em 0 0 hsl(0, calc(var(--active) * 97%), calc(var(--active) * 10%)) inset;
  
    transition:
      box-shadow 0.25s ease-out,
      scale 0.25s,
      background 0.25s;
    scale: calc(1 + (var(--active) * 0.1));
    transform-style: preserve-3d;
    perspective: 100vmin;
    overflow: hidden;
  }
  .space-button:active {
    scale: 1;
    --bg: radial-gradient(
          120% 120% at 126% 126%,
          hsl(245 calc(var(--active) * 97%) 98% / calc(var(--active) * 0.9)) 40%,
          transparent 50%
        )
        calc(100px - (var(--active) * 100px)) 0 / 100% 100% no-repeat,
      radial-gradient(
          120% 120% at 120% 120%,
          hsl(245 calc(var(--active) * 97%) 70% / calc(var(--active) * 1)) 30%,
          transparent 70%
        )
        calc(100px - (var(--active) * 100px)) 0 / 100% 100% no-repeat,
      hsl(245 calc(var(--active) * 100%) calc(12% - (var(--active) * 8%)));
    box-shadow:
      0 0 calc(var(--active) * 6em) calc(var(--active) * 3em)
        hsl(245 97% 61% / 0.5),
      0 0.05em 0 0
        hsl(245 calc(var(--active) * 97%) calc((var(--active) * 50%) + 30%)) inset,
      0 -0.05em 0 0 hsl(245 calc(var(--active) * 97%) calc(var(--active) * 10%)) inset;
    background: var(--bg);
  }
  .space-button:active .text {
    font-weight: 300;
    animation:
      wobble 0.6s ease-in-out infinite,
      blurMove 1.5s ease-in-out infinite;
    text-shadow:
      5px 5px 20px rgba(255, 255, 255, 0.8),
      10px 10px 30px rgba(255, 0, 255, 0.6);
  }
  @keyframes wobble {
    0%,
    100% {
      transform: translate(0, 0);
    }
    25% {
      transform: translate(-2px, -10px);
    }
    50% {
      transform: translate(2px, 3px);
    }
    75% {
      transform: translate(-1px, 5px);
    }
  }
  @keyframes blurMove {
    0%,
    100% {
      text-shadow:
        5px 5px 20px rgba(255, 255, 255, 0.8),
        10px 10px 30px rgba(255, 0, 255, 0.6);
    }
    50% {
      filter: blur(1px);
      text-shadow:
        10px 10px 25px rgba(255, 255, 255, 0.8),
        15px 15px 35px rgba(255, 0, 255, 0.6);
    }
  }
  .galaxy:active::before {
    animation: circling 2s linear infinite;  
  }
  .galaxy:active::after {
    animation: circling 1.5s linear infinite;  
  }
  @keyframes circling {
    0% {
      transform: translate(-10px, -20%) rotate(0deg);
    }
    100% {
      transform: translate(-10px, -20%) rotate(200deg);
    }
  }
  .galaxy {
    position: absolute;
    width: 100%;
    aspect-ratio: 1;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    overflow: hidden;
    opacity: var(--active);
    transition: opacity 0.25s;
  }
  
  @-webkit-keyframes move-x {
    0% {
      translate: -100px 0;
    }
    100% {
      translate: 100px 0;
    }
  }
  @keyframes move-x {
    0% {
      translate: -100px 0;
    }
    100% {
      translate: 100px 0;
    }
  }
  @-webkit-keyframes move-y {
    0% {
      transform: translate(0, -50px);
    }
    100% {
      transform: translate(0, 50px);
    }
  }
  @keyframes move-y {
    0% {
      transform: translate(0, -50px);
    }
    100% {
      transform: translate(0, 50px);
    }
  }
  
  .backdrop {
    position: absolute;
    inset: var(--cut);
    background: var(--bg);
    border-radius: 2rem;
    transition: background 0.25s;
  }
  @supports (selector(:has(:is(+ *)))) {
    body:has(button:is(:hover, :focus-visible)) {
      --active: 1;
      --play-state: running;
    }
    .bodydrop {
      display: none;
    }
  }
  .space-button:is(:hover, :focus-visible) ~ :is(.bodydrop, .particle-pen) {
    --active: 1;
    --play-state: running;
  }
  .space-button:is(:hover, :focus-visible) {
    --active: 1;
    --play-state: running;
  }
  .galaxy-button {
    position: relative;
  }
  @keyframes shootingStar {
    0% {
      transform: translateX(0) translateY(0);
      opacity: 1;
    }
    50% {
      transform: translateX(-55em) translateY(0);
      opacity: 1;
    }
    70% {
      transform: translateX(-70em) translateY(0);
      opacity: 0;
    }
    100% {
      transform: translateX(0) translateY(0);
      opacity: 0;
    }
  }
  @keyframes glowing-stars {
    0% {
      opacity: 0;
    }
  
    50% {
      opacity: 1;
    }
  
    100% {
      opacity: 0;
    }
  }
        /* Сітка для карточок знижок: 4 карточки в ряд */
        .discount-products-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-gap: 20px;
            margin-bottom: 40px;
        }
        /* Стилізація окремої карточки товару */
        .discount-product-card {
            background: #fff;
            border: 1px solid #ddd;
            border-radius: 10px;
            overflow: hidden;
            position: relative;
            transition: transform 0.3s ease;
            box-shadow: 0 2px 6px rgba(0,0,0,0.1);
            cursor: pointer;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        .discount-product-card:hover {
            transform: scale(1.03);
        }
        /* Стилізація зображення товару */
        .discount-product-card img {
            width: 100%;
            object-fit: cover;
            border-bottom: 1px solid #ddd;
        }
        /* Інформаційний блок товару */
        .discount-product-card .product-info {
            padding: 15px;
            text-align: center;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
            justify-content: space-between;
        }
        .discount-product-card .product-info h3 {
            font-size: 1.2em;
            margin: 10px 0;
            color: #333;
            height: 2.8em; /* Фіксована висота для заголовка (~2 рядки) */
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }
        .discount-product-card .product-info .category {
            font-size: 0.9em;
            color: #777;
            margin-bottom: 5px;
        }
        /* Блок із цінами */
        .price-discount-container {
            margin-top: auto;
            padding-top: 10px;
            display: flex;
            justify-content: center;
            align-items: baseline;
            gap: 10px;
        }
        .original-price {
            text-decoration: line-through;
            color: #888;
            font-size: 1em;
            margin: 0;
        }
        .discount-price {
            color: #fa8520;
            font-size: 1.4em;
            font-weight: bold;
            margin: 0;
        }
        /* Таймер у верхньому правому куті карточки */
        .discount-timer {
            position: absolute;
            top: 10px;
            right: 10px;
            background: rgba(231, 76, 60, 0.9); /* напівпрозорий червоний */
            color: #fff;
            padding: 5px 8px;
            font-size: 0.9em;
            border-radius: 5px;
            font-weight: bold;
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        
                .discount-timer1 {
    display: inline-block;
            top: 10px;
            right: 10px;
            background: rgba(231, 76, 60, 0.9); /* напівпрозорий червоний */
            color: #fff;
            padding: 5px 8px;
            font-size: 0.9em;
            border-radius: 5px;
            font-weight: bold;
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }

  /* ============================================
   модальне окно казино
============================================ */
.modal {
    display: none;  
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
  }
button#openModal{
    background-color: #2d2b29;
    padding: 0px 0px 0px 0px ;
    font-size: 0px;
    min-width: 0px;
}
#submitCode{
    text-align: center;
    margin-left: 140px;
}
h4{
    font-weight: bold;
    color: #FFA500;
    margin: 0;
}
.casino{
    width: 70px;
    height: 70px;
}.modal.open {
    display: flex;
  }
@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }
.modal-content {
      background: #2c2c2c;
      background-size: 300% 300%;
      animation: gradientBG 6s ease infinite;
      text-align: center;
      padding: 0px 20px 20px 20px;
      width: 600px;
      border-radius: 12px;
      position: relative;
      margin-bottom: 50px;
      margin: auto;
      border-radius: 8px;
      max-width: 500px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      animation: modalAppear 0.3s ease-out;
      position: relative;
      box-shadow: 0 0 15px rgba(245, 127, 17, 0.5), 
                  0 0 30px rgba(255, 190, 12, 0.3);
     border: 2px solid rgba(255, 145, 0, 0.5);
    }
.modal-content::before {
    content: "";
    position: absolute;
    top: -5px; left: -5px; right: -5px; bottom: -5px;
    border-radius: 14px;
    background: radial-gradient(circle, rgba(240, 163, 19, 0.3) 10%, transparent 80%);
    filter: blur(10px);
    z-index: -1;
  } 
.close111 {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 40px;
    cursor: pointer;
    color: #666;  
}
#rouletteContainer {
    margin: 45px 0px 0px 0px;
    position: relative;
    width: 500px;
    height: 500px;
}
#rouletteWheel {
    height: 97%;
    border-radius: 50%;
    border: 4px solid #d1d1d1;  
    position: relative;
    background: conic-gradient(
        #ff9800 0deg 60deg, 
        #ffcc80 60deg 120deg, 
        #ff9800 120deg 180deg, 
        #ffcc80 180deg 240deg, 
        #ff9800 240deg 300deg, 
        #ffcc80 300deg 360deg
    );  
    transform: rotate(0deg);
    transition: transform 4s ease-out;
}
.roulette-line {
    position: absolute;
    width: 2px;
    height: 100%;
    background: #fff;  
    left: 50%;
    top: 0;
    transform-origin: 50% 50%;
}
.roulette-text-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.roulette-text {
    position: absolute;
    top: 46%;
    left: 38%;
    transform-origin: center;
    transform: 
      rotate(var(--angle))  
      translateY(-170px)  
      rotate(90deg);  
    font-size: 18px;
    font-weight: bold;
    color: #030303;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
}
#pointer {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 36px;
    color: #f77f1e;
  }
#spinButton {
    margin-top: 20px;
    padding: 12px 24px;
    background-color: #FFA500;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
#spinButton:hover {
    background-color: #e59400;
  }
#bonusCodeInput {
    width: 80%;
    padding: 16px 24px;
    font-size: 18px;
    color: white;
    background-color: #121213;
    border: 3px solid transparent;
    border-radius: 16px;
    background-image: 
      linear-gradient(#121213, #121213),  
      linear-gradient(#121213 50%, rgba(18, 18, 19, 0.6) 80%, rgba(18, 18, 19, 0)),  
      linear-gradient(90deg, #2d2b29, #f58414, #2d2b29, #f58414, #2d2b29, #f58414, #2d2b29);  
    background-origin: border-box;
    background-clip: padding-box, border-box, border-box;
    background-size: 200%;
    animation: animate 5s infinite linear;
  }
  #bonusCodeInput:focus {
    outline: none;
  }
  @keyframes animate {
    0% { background-position: 0% }
    100% { background-position: 200% }
  }
  @media (max-height: 800px) {
    .modal-content {
        width: 450px;
        padding: 0px 15px;
        margin-bottom: 30px;
        margin: auto;
    }
h4 {
        font-size: 14px;
    }
.modal .span1 {
      font: 27px "Oswald", sans-serif;
      letter-spacing: 0;
      padding: 0px;
      margin: 0 auto;
      text-shadow: 0 0 80px rgba(255, 255, 255, 0.5);
      background: url(https://i.ibb.co/RDTnNrT/animated-text-fill.png) repeat-y;
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      -webkit-animation: aitf 80s linear infinite;
      -webkit-transform: translate3d(0, 0, 0);
      -webkit-backface-visibility: hidden;
  }
#submitCode {
        margin-left: 110px;
    }
#rouletteContainer {
        margin: 35px 0px 0px 25px;
        width: 400px;
        height: 400px;
    }
.roulette-text {
        font-size: 16px;
        transform: 
            rotate(var(--angle))
            translateY(-130px)
            rotate(90deg);
    }
#pointer {
        top: -35px;
        font-size: 32px;
    }
#spinButton {
        margin-top: 15px;
        padding: 10px 20px;
        font-size: 16px;
    }
#bonusCodeInput {
        width: 75%;
        padding: 10px 10px;
        font-size: 16px;
    }
}
@keyframes animate {
    0% { background-position: 0% }
    100% { background-position: 200% }
}
#bonusCodeInput::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 32px;
    background: linear-gradient(90deg, #FF6D1B, #FFEE55, #5BFF89, #d13939, #8b84da, #FF64F9, #FF6565);
    filter: blur(30px);
    opacity: 0;
    transition: opacity 0.3s;
    background-size: 200%;
    animation: animate 2s infinite linear;
  }
.image-slider {
    position: relative;
    width: 570px;  
    height: 548px;  
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.image-slider img {
    width: 540px;  
    height: 600px;
    object-fit: contain;  
    display: none;
    border-radius: 10px;
}
.image-slider img.active {
    display: block;
}
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;  
    color: gray;  
    border: none;
    padding: 0;
    cursor: pointer;
    font-size: 35px;  
}
.prev {
    left: -50px;  
}
.next {
    right: -50px;
}
.prev:hover, .next:hover {
    color: orange;  
}
/* ============================================
   Футер
============================================ */
.footer-section h3 {
  margin-bottom: 10px;
}
.footer-section p {
  margin-bottom: 10px;
}
.contact-icons {
  display: flex;
  gap: 40px;  
  margin-top: 20px;  
}
.contact-icons a img {
  width: 50px;  
  height: 50px;
  object-fit: contain;  
}
.pronas{
  max-width: 100%;
}
.modal1 {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 9999;
    opacity: 0;
    animation: fadeIn 0.5s forwards;
}
.modal-content1 {
    background: rgb(99, 98, 98);
    padding: 25px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 400px;
    animation: scaleIn 0.4s ease-in-out;
}
h2 {
    color: #ffffff;
}
p {
    font-size: 16px;
    color: #ffffff;
}
.modal-buttons {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
}
#yesno111 {
    width: 100%;
    padding: 14px 0;
    border-radius: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}
button {
    padding: 12px 24px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    transition: 0.3s ease;
    min-width: 120px;
}
#yesBtn1 {
    color: #ff8109;
    background: #2c2b29;
    box-shadow: 0 4px 10px rgba(104, 98, 86, 0.3);
}
#yesBtn1:hover {
    background:     #383838;
    transform: scale(1.1);
}
#noBtn1 {
    color: #ff8109;
    background: #d8d6d6;
    box-shadow: 0 4px 10px rgba(80, 76, 76, 0.3);
}
#noBtn1:hover {
    background: #ffffff;
    transform: scale(1.1);
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes scaleIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from { transform: scale(0.8); }
    to { transform: scale(1); }
}
.modal-logo {
    height: 30px;  
    vertical-align: middle;  
    margin-left: 8px;  
}
.top {
  margin: 0;
  background-color: #ff9800;
  font-size: 16px;
  text-align: center;
  padding: 3px 8px;
  border-radius: 4px;
  color: #2f2d2b;
  font-weight: bold;
}
.price-top-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
/* ============================================
   Топ товари стилі
============================================ */
.top-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(10px, 2vw, 20px);
  padding: clamp(10px, 2vw, 20px);
  margin-top: 20px;
}
.top-product-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.top-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.top-product-card img {
  width: 100%;
  object-fit: cover;
}
.top-product-card .product-info {
  padding: 15px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}
.top-product-card h3 {
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 1.2rem;
}
.top-product-card .category {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 8px;
}
.top-product-card .price {
  color: #f48222;
  font-size: 1.3rem;
  font-weight: bold;
  max-width: 115px;
  margin: 0;
}
/* ============================================
   Інфа в футері
============================================ */
.main-footer {
    background-color: #2D2B29;
    color: white;
    padding: clamp(2rem, 4vw, 3rem) 0 1rem;
    margin-top: auto;
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: clamp(1rem, 2vw, 2rem);
}
.footer-section h3 {
    color: #f48222;
    margin-bottom: 1rem;
    font-size: clamp(1.1rem, 3vw, 1.3rem);
}
#footer-section-text{
  display: block;
  color: white;
  text-decoration: none;
  font-size: 15px;
}
#gmail-com{
  color: rgb(252, 252, 252);
      font-size: clamp(0.9rem, 2.5vw, 1rem);
}
#telefonchik {
color: rgb(252, 252, 252);
  font-size: clamp(0.9rem, 2.5vw, 1rem);
}
.footer-section a{
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 20px;
}
.footer-section p {
    margin: 0.5rem 0;
    color: #ecf0f1;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
}
.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding: 1rem 20px;
    border-top: 1px solid #34495e;
    text-align: center;
    color: #bdc3c7;
    font-size: clamp(0.8rem, 2.5vw, 0.9rem);
}
 .floating-telegram-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1000;
}
.floating-telegram-button::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    z-index: -1;
}
.floating-telegram-button img {
    width: 70px;
    height: 70px;
    transition: transform 0.3s ease;
}
.floating-telegram-button::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 136, 204, 0.5);
    border-radius: 50%;
    z-index: -2;
    animation: pulse 1.5s infinite ease-out;
}
.floating-telegram-button:hover {
    transform: translateY(-5px);
}
.floating-telegram-button:hover img {
    transform: scale(1.1);
}
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.9);
        opacity: 0;
    }
}
.floating-contact-button {
    display: none;
}
/* ============================================
   Силка в казіно
============================================ */
.rafehub1{
    font-weight: bold;
    font-size: 20px;
    margin-left: 5px;
    color: #fb8007;
}
.span1 {
    font: 35px "Oswald", sans-serif;
    max-width: 80%;
    letter-spacing: 0;
    padding: 0;
    display: block;
    margin: 0 auto;
    text-shadow: 0 0 80px rgba(255, 255, 255, 0.5);
    background: url(https://i.ibb.co/RDTnNrT/animated-text-fill.png) repeat-y;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-animation: aitf 80s linear infinite;
    -webkit-transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
  }
@-webkit-keyframes aitf {
    0% {
      background-position: 0% 50%;
    }
    100% {
      background-position: 100% 50%;
    }
    
  }
.phone-icon {  
    display: none;
  }
.search-toggle {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
  }
  .add-to-cart-btn a{
    background-color: #27ae60;
    color: white;
    border: none;
    padding: clamp(10px, 2vw, 12px) clamp(20px, 4vw, 24px);
    border-radius: 4px;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s;
    width: 100%;
    max-width: 300px;
    text-decoration: none;
}
  .add-to-cart-btn1 a{
    background-color: #27ae60;
    color: white;
    border: none;
    padding: clamp(10px, 2vw, 12px) clamp(20px, 4vw, 24px);
    border-radius: 4px;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s;
    width: 100%;
    max-width: 300px;
    text-decoration: none;
}

.order-product{
    display: flex;
    gap: 20px;
    align-items: center;
    background: #fff; 
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 20px;
    
}
.quantity-selector{
    display: flex;
    align-items: center;
    gap: 5px;
}
/* ============================================
   Розрішение на телефони
============================================ */
@media (min-width: 713px) and (max-width: 1210px) {
  .header-content {
    text-align: center;
    padding: 6px 20px 6px 20px;
  }
 .contact-info img {
    width: 50px;
    height: 50px;
}
.phone-number{
    display: none;
  }
  .main-header {
    padding: 0px;
  }
.search-input {
    margin-top: 0px;
    width: 90%;
    color: #ff9800;
    font-size: 15px;
    text-align: center;
}
 .image-slider {
    width: 100%;
    max-width: 440px;   
    margin: 0 auto;     
    height: auto;       
    overflow: hidden;
  }
 .image-slider img {
    width: 100%;        
    height: auto;       
    object-fit: contain;  
    border-radius: 10px;  
    
  }
       .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0.5rem;
        padding: 0.5rem 0;
      }
      .footer-section {
        margin-bottom: 0.5rem;
      }
      .footer-section h3 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
      }
      .footer-bottom {
        margin-top: 0.5rem;
        padding: 0.3rem 20px;
        font-size: 0.8rem;
      }
      .contact-icons {
      justify-content: center;
      margin-top: 20px;  
    }
    .add-to-cart-btn, .reviews-button {
      display: block;         
      width: 100%;            
      max-width: 400px;       
      margin: 10px auto;         
      box-sizing: border-box;  
  }
      .add-to-cart-btn1, .reviews-button {
      display: block;         
      width: 100%;            
      max-width: 400px;       
      margin: 10px auto;         
      box-sizing: border-box;  
  }
  .product-details {
    background: white;
    padding: clamp(15px, 3vw, 30px);
    border-radius: 8px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(20px, 4vw, 30px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    align-items: center;
}
.products-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.phone-icon {  
  display: none;
}
.discount-products-grid {
    display: grid
;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
    margin-bottom: 40px;
}
.phone-icon {
  display: inline-block;
}

.contact-info {
  display: flex
;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.resistance-filters span {
      display: none;
      color: #2d2b29;
      font-weight: bold;
  }
}
@media (min-width: 481px) and (max-width: 712px) {
  .header-content {
   text-align: center;
    padding: 10px;
  }
.contact-info img {
    width: 40px;
    height: 40px;
}
.discount-products-grid {
    display: grid
;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
    margin-bottom: 40px;
}
.resistance-filters a {
    margin: 0 0px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    padding: 5px 10px;
    border: 2px solid rgba(255, 145, 0, 0.5);
    border-radius: 4px;
    box-shadow: 0 0 15px rgba(245, 127, 17, 0.5), 0 0 30px rgba(255, 190, 12, 0.3);
}
.contact-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.search-input {
  margin-top: 0px;
  width: 79%;
  color: #ff9800;
  font-size: 15px;
  text-align: center;
}
.image-slider {
    width: 100%;
    max-width: 440px;   
    margin: 0 auto;     
    height: auto;       
    overflow: hidden;
  }
  .image-slider img {
    width: 100%;        
    height: auto;       
    object-fit: contain;  
    border-radius: 10px;  
}
.footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0.5rem;
        padding: 0.5rem 0;
      }
      .footer-section {
        margin-bottom: 0.5rem;
      }
      .footer-section h3 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
      }
      .footer-bottom {
        margin-top: 0.5rem;
        padding: 0.3rem 20px;
        font-size: 0.8rem;
      }
.contact-icons {
      justify-content: center;
      margin-top: 20px;  
    }
    .add-to-cart-btn, .reviews-button {
      display: block;         
      width: 100%;            
      max-width: 400px;       
      margin: 10px auto;         
      box-sizing: border-box;  
      
  }
      .add-to-cart-btn1, .reviews-button {
      display: block;         
      width: 100%;            
      max-width: 400px;       
      margin: 10px auto;         
      box-sizing: border-box;  
      
  }
.products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.phone-icon {  
  display: none;
}

.phone-number{
  display: none;
}

.phone-icon {
  display: inline-block;
}

.main-header{
  padding: 0px 0px 0px 0px;
}
.resistance-filters span {
      display: none;
      color: #2d2b29;
      font-weight: bold;
  }
  
}
@media (max-width: 480px) {
  .header-content {
    flex-wrap: nowrap;           
    justify-content: space-between;
    align-items: center;
    padding: 0px 10px;            
  }
  .main-header {
    padding: 0;
  }
  
.logotg{
    display: none;
  }
.logo-image {
      margin-top: 3px;
      width: 120px;   
      height: auto;
    }
.search-result-item {
        width:  70vw;  
        max-width: 150vw;  
        box-sizing: border-box;  
    }
 .search-results {
      width: 70vw;
      box-sizing: border-box;
      position: absolute;    
      left: 50%;
      transform: translateX(-50%);
  }
  .phone-number {  
      display: none;
    }
    .search-icon {
      display: inline-block;
      width: 24px;
      height: 24px;
      cursor: pointer;
    }
    .contact-info img {
      width: 40px;   
      height: 40px;
  }
  .contact-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0px;   
    padding: 5px 0px 5px 0px;  
    max-width: 200px; 
    margin: 0 auto;  
}
.search-input{
  margin-top: 0px;
  height: 10px;
  width: 75%;
  
  color: #ff9800;
  font-size: 15px;
  text-align: center;

}
.phone-icon {  
      display: inline-block;
    }
.footer-content {
      grid-template-columns: 1fr;
      text-align: center;
      gap: 0.5rem;
      padding: 0.5rem 0;
    }
    .footer-section {
      margin-bottom: 0.5rem;
    }
    .footer-section h3 {
      font-size: 1rem;
      margin-bottom: 0.3rem;
    }
    .footer-bottom {
      margin-top: 0.5rem;
      padding: 0.3rem 20px;
      font-size: 0.8rem;
    }
    .volume-filters span {
      color: #2d2b29;
      font-weight: bold;
      display: none;
  }
.contact-icons {
    justify-content: center;
    margin-top: 20px;  
  }
.main-content {
        padding: 10px;
    }
    #searchInput{
      color: #ff9800;
      line-height: 30px;
     }
    .search-container{
        width:100%;
        text-align: center;
    }
.categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
.products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
.products-grid:has(:only-child) {
      grid-template-columns: repeat(2, 1fr);
  }
  .product-card img {
        height: 180px;
    }
    .product-card h3 {
        font-size: 14px;
        margin: 0px;
    }
    .product-card p {
        font-size: 12px;
        margin: 5px;
    }
    .product-price {
        font-size: 20px;
        
        margin: 0px;
    }
.resistance-filters a {
    margin: 0 0px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    padding: 1px 3px;
    border: 2px solid rgba(255, 145, 0, 0.5);
    border-radius: 4px;
    box-shadow: 0 0 15px rgba(245, 127, 17, 0.5), 0 0 30px rgba(255, 190, 12, 0.3);
}
.resistance-filters span {
      display: none;
      color: #2d2b29;
      font-weight: bold;
  }
.related-product-card {
      width: 130px;
      cursor: poin  ter;
      background-color: #ffffff;
      transition: transform 0.3s;
      border-radius: 10px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }
  .top-products-grid{
        grid-template-columns: repeat(2, 1fr);
    }
.related-product-card img {
      grid-template-columns: repeat(3, 1fr);
      width: 100%;
      height: 120px;
      object-fit: cover;
      margin-bottom: 0px;
      border-radius: 10px;
  }
.product-description p {
    color: #333333;
    max-width: 90%;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
}
.related-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);  
   
    gap: 10px;
}
.reviews-button {
        padding: 10px 100px;
         max-width: 95%; 
        background-color: #ff9800;
        border: none;
        color: #2e2c2a;
        border-radius: 4px;
        cursor: pointer;
        font-size: 14px;
        font-weight: bold;
        transition: background-color 0.2s ease-in-out;
        margin-top: 10px;
    }
    .name-price{
        display: flex;
        margin: 12px 10px 12px 10px;
        align-items: center;
        justify-content: space-between;
    }
#rouletteContainer {
        margin: 40px 0px 30px;
        position: relative;
        width: 400px;
        height: 400px;
      }
#submitCode{
        text-align: center;
        margin-left: 90px;
    }
.rafehub1{
        font-weight: bold;
        font-size: 18px;
        margin-left: 0px;
        color: #ff9100;
    }
.close {
        position: absolute;
        top: 0px;
        right: 45px;
        font-size: 31px;
        cursor: pointer;
        color: #808080;
    }
.roulette-text {
        position: absolute;
        top: 46%;
        left: 39%;
        transform-origin: center;
        transform: 
          rotate(var(--angle))  
          translateY(-120px)  
          rotate(90deg);  
        font-size: 15px;
        font-weight: bold;
        color: #030303;
        text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
        white-space: nowrap;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 5px;
    }
.image-slider {
      position: relative;
      width: 100%;        
      max-width: 440px;   
      height: auto;      
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
  }
 .image-slider img {
      width: 100%;
      height: auto;
      object-fit: cover; 
  }
.color-options {
    flex-wrap: wrap;
    gap: 5px; 
  }
.add-to-cart-btn, .reviews-button {
     width: 100%;           
    max-width: 400px;      
    margin: 5px auto;        
    box-sizing: border-box; 
    text-decoration: none;
}
.add-to-cart-btn1, .reviews-button {
     width: 100%;           
    max-width: 400px;      
    margin: 5px auto;        
    box-sizing: border-box; 
    text-decoration: none;
}

.modal-content {
  background: #2c2c2c;
  background-size: 300% 300%;
  animation: gradientBG 6s ease infinite;
  padding: 0px 20px; 
  margin: 0 0 70px 0; 
  border-radius: 12px;
  position: relative;
  box-shadow: 0 0 15px rgba(245, 127, 17, 0.5), 0 0 30px rgba(255, 190, 12, 0.3);
  border: 2px solid rgba(255, 145, 0, 0.5);
  margin: auto;
  width: 400px;

}
.top-product-card img {
  width: 100%;
  height: 200px; 
  object-fit: cover;
}
#showSiteReviewsBtn {
  padding: 10px 120px;
  max-width: 300px;
  background-color: #ff9800;
  border: none;
  color: #2e2c2a;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  transition: background-color 0.2s ease-in-out;
  margin-top: 30px;
}

.footer-section p {
  font-size: 20px;
  margin: 0.2rem 0;
}
.casino{
  width: 50px!important;
  height: 50px!important;
}
.pronas{
  max-width: 100%;
}
.discount-products-grid {
    display: grid
;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
    margin-bottom: 40px;
}

element.style {
}
.discount-timer {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(231, 76, 60, 0.9);
    color: #fff;
    padding: 5px 8px;
    font-size: 0.8em;
    border-radius: 5px;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.product-pricing {
    display: flex
;
    align-items: center;
    flex-direction: column;
}

.order-product{
    display: flex;
    gap: 0px;
    align-items: center;
    background: #fff; 
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 0px;
    margin-bottom: 20px;
    
}
.quantity-selector{
    display: flex;
    align-items: center;
    gap: 0px;
}
}

