@import 'null.css';
h1 
h2 
h3 
h4 
h5 
h6 {
margin: 0;
padding: 0;
}
:root {
  --primary-color: #95c11f;
  --secondary-color:#bd2323 ;
  --orange-color: #ff4e00;  
  --text-color: #333;
}

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

body {
  font-family: Arial, sans-serif;
  line-height: 1.5;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
.menu-item
/* Верхня лінія */
.top-line {
  padding: 15px 0;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.top-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.logo img {
  height: 70px;
}

.location,
.email {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-color);
}

.location img,
.email img {
  width: 20px;
  height: 20px;
}

.phone-block {
  text-align: right;
}

.phone {
  font-size: 18px;
  font-weight: bold;
  color: var(--text-color);
}

.work-time {
  font-size: 12px;
  color: #666;
}

.callback-btn {
  padding: 10px 25px;
  border: 1px solid var(--primary-color);
  border-radius: 4px;
  background: none;
  color: var(--primary-color);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
}

/* Головне меню */
.main-menu {
  padding: 15px 0;
  background: #fff;
}

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

.menu-list {
  display: flex;
  list-style: none;
  gap: 20px;
}

.menu-link {
  text-decoration: none;
  color: var(--text-color);
  font-size: 14px;
  font-weight: bold;
  padding: 8px 16px;
  border-radius: 4px;
  transition: all 0.3s;
}

.menu-link.active {
  background: var(--primary-color);
  color: #fff;
}

.arrow {
  font-size: 10px;
  margin-left: 5px;
}

.user-controls {
  display: flex;
  gap: 20px;
}

.cabinet,
.cart {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text-color);
  font-size: 14px;
}

.cart-count {
  background: var(--primary-color);
  color: #fff;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.main-slider {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.slider-content {
  position: relative;
  height: 100%;
}

.main-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.main-slider .slide.active {
  opacity: 1;
  visibility: visible;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

/* Стилі для стрілок навігації */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: none;
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  z-index: 3;
}

.slider-arrow.prev {
  left: 20px;
}

.slider-arrow.next {
  right: 20px;
}

/* Стилі для точок навігації */
.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.dot {
  width: 12px;
  height: 12px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

.dot.active {
  background: var(--primary-color);
}

/* Стилі для контенту слайду */
.slide .container {
  position: relative;
  z-index: 2;
  height: 100%;
}

.slide-info {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  color: #fff;
}

.slide-info h1 {
  font-size: 64px;
  color: var(--primary-color);
  margin-bottom: 20px;
  line-height: 1.1;
  position: relative;
}

.slide-info p {
  font-size: 24px;
  margin-bottom: 30px;
  position: relative;
}

.discount-badge {
  position: absolute;
  right: 55%;
  top: 90px;
  width: 120px;
  height: 120px;
  background: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 2;
}

.details-btn {
  position: relative;
  z-index: 2;
  background: var(--orange-color);
  color: white;
  border: none;
  padding: 14px 35px;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
}

/* Стилі для навігаційних елементів */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: none;
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  z-index: 10;
}

.slider-arrow.prev {
  left: 20px;
}

.slider-arrow.next {
  right: 20px;
}

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  padding: 0;
}

.dot.active {
  background: var(--primary-color);
}

.slide {
  position: relative;
  height: 100%;
}

.slide-info {
  padding-top: 100px;
  color: #fff;
  position: relative;
}

.slide-info h1 {
  font-size: 64px;
  margin-bottom: 20px;
  line-height: 1.1;
}

.slide-info p {
  font-size: 24px;
  margin-bottom: 30px;
}

.details-btn {
  padding: 15px 40px;
  background: var(--secondary-color);
  border: none;
  border-radius: 4px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

.discount-badge {
  position: absolute;
  right: 55%;
  top: 90px;
  width: 120px;
  height: 120px;
  background: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.discount-badge .percent {
  font-size: 32px;
  font-weight: bold;
}
.details-btn {
   background: var(--orange-color);
    color: white;
    border: none;
    padding: 14px 35px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: none;
  background-color: rgba(0, 0, 0, 0.5);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 20px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
}

.nav-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 20px 0;
}

.nav-dots .dot {
  width: 8px;
  height: 8px;
  background-color: #d9d9d9;
  border-radius: 50%;
  cursor: pointer;
}

.nav-dots .dot.active {
  background-color: var(--primary-color);
}

.title-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

.title-line {
  width: 64px;
  height: 1px;
  background-color: #e2e2e2;
}

.title-line:first-child {
  transform: rotate(12deg);
}

.title-line:last-child {
  transform: rotate(-12deg);
}

h1 {
  color: #2c3e50;
  font-size: 36px;
  font-weight: normal;
}

/*  піца*/
.pizza-section {
  padding: 40px 0;
}

.pizza-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.pizza-card {
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin: 10px;
  padding: 20px;
  width: 280px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.pizza-image {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  margin-bottom: 16px;
}

.pizza-card.bavarian .pizza-image {
  background-image: url('./img/Цветовой тон_Насыщенность 1.png');
}

.pizza-card.vegetarian .pizza-image {
  background-image: url('./img/Слой 12.png');
}

.pizza-card.pepperoni .pizza-image {
  background-image: url("./img/Слой 13.png");
}

.pizza-card.classic .pizza-image {
  background-image: url('./img/Слой 14.png');
}

.pizza-card h2 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #2c3e50;
}

.pizza-info {
  color: #7f8c8d;
  font-size: 14px;
  margin-bottom: 16px;
}

.price-quantity {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.price {
  font-size: 20px;
  font-weight: bold;
  color: #2c3e50;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.quantity-btn {
  width: 32px;
  height: 32px;
  border: 1px solid #e2e2e2;
  background: none;
  border-radius: 4px;
  cursor: pointer;
  color: #2c3e50;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quantity-btn:hover {
  background-color: #f5f5f5;
}

.quantity {
  font-size: 16px;
  color: #2c3e50;
}

.add-to-cart {
  width: 100%;
  padding: 12px;
  background-color: #ff5722;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.add-to-cart:hover {
  background-color: #f4511e;
}

.hot-label {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
}

.flame-icon {
  font-size: 24px;
  color: #ff5722;
}

.pizza-section .nav-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.pizza-section .nav-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ddd;
  border: none;
  padding: 0;
  cursor: pointer;
}

.pizza-section .nav-dots .dot.active {
  background: #ff5722;
}

.pizza-section .nav-dots .arrow {
  width: 30px;
  height: 30px;
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pizza-section .nav-dots .arrow.prev::before,
.pizza-section .nav-dots .arrow.next::before {
  content: '';
  width: 10px;
  height: 10px;
  border-top: 2px solid #666;
  border-right: 2px solid #666;
}

.pizza-section .nav-dots .arrow.prev::before {
  transform: rotate(-135deg);
}

.pizza-section .nav-dots .arrow.next::before {
  transform: rotate(45deg);
}

.pizza-card h2 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #2c3e50;
}

.pizza-info {
  color: #7f8c8d;
  font-size: 14px;
  margin-bottom: 16px;
}

.price-quantity {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.price {
  font-size: 20px;
  font-weight: bold;
  color: #2c3e50;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.quantity-btn {
  width: 32px;
  height: 32px;
  border: 1px solid #e2e2e2;
  background: none;
  border-radius: 4px;
  cursor: pointer;
  color: #2c3e50;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quantity-btn:hover {
  background-color: #f5f5f5;
}

.quantity {
  font-size: 16px;
  color: #2c3e50;
}

.add-to-cart {
  width: 100%;
  padding: 12px;
  background-color: #ff5722;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.add-to-cart:hover {
  background-color: #f4511e;
}

/*  для навігаційних точок */
.nav-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.nav-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ddd;
  border: none;
  padding: 0;
  cursor: pointer;
}

.nav-dots .dot.active {
  background: var(--primary-color);
}

.nav-dots .arrow {
  width: 30px;
  height: 30px;
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}



ow.prev::before {
  transform: rotate(-135deg);
}

.nav-dots .arrow.next::before {
  transform: rotate(45deg);
}

.price {
  font-size: 20px;
  font-weight: bold;
  color: #2c3e50;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.quantity-btn {
  width: 32px;
  height: 32px;
  border: 1px solid #e2e2e2;
  background: none;
  border-radius: 4px;
  cursor: pointer;
  color: #2c3e50;
}

.quantity-btn:hover {
  background-color: #f5f5f5;
}

.quantity {
  font-size: 16px;
  color: #2c3e50;
}

.add-to-cart {
  width: 100%;
  padding: 12px;
  background-color: #ff5722;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s;
}

.add-to-cart:hover {
  background-color: #f4511e;
}





.set {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px;
}

.set-item {
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin: 10px;
  padding: 20px;
  width: 280px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.set-item .image {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 200px;
  border-radius: 8px 8px 0 0;
  margin-bottom: 15px;
}

.set-item:nth-child(1) .image {
  background-image: url("./img/set_0.jpg");
}

.set-item:nth-child(2) .image {
  background-image: url("./img/set_1.jpg");
}

.set-item:nth-child(3) .image {
  background-image: url("./img/set_2.png");
}

.set-item:nth-child(4) .image {
  background-image: url("./img/set_3.png");
}

.set-item h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #333;
}

.set-item p {
  font-size: 16px;
  margin: 5px 0;
  color: #666;
}
wok
.highlight {
  color: var(--secondary-color);
  font-weight: bold;
}

.quantity-selector {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.quantity-button {
  background-color: #ccc;
  border: none;
  color: white;
  font-size: 14px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quantity-selector input {
  width: 50px;
  text-align: center;
  font-size: 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 5px;
  margin-left: 5px;
  margin-right: 5px;
}

.add-to-cart {
  background-color: #e67e22;
  color: #fff;
  padding: 12px 30px;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  display: block;
  margin-top: 10px;
}

.add-to-cart:hover {
  background-color: #d35400;
}

.price {
  font-weight: bold;
  font-size: 18px;
  margin-top: 10px;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px;
}

.menu-item {
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin: 10px;
  padding: 20px;
  width: 280px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.menu-item .image {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 200px;
  border-radius: 8px 8px 0 0;
  margin-bottom: 15px;
}

.menu-item:nth-child(1) .image {
  background-image: url("./img/roll_0.png");
}

.menu-item:nth-child(2) .image {
  background-image: url("./img/Слой 8.png");
}

.menu-item:nth-child(3) .image {
  background-image: url("./img/Слой 9.png");
}

.menu-item:nth-child(4) .image {
  background-image: url("./img/Слой 10.png");
}

.menu-item h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #333;
}

.menu-item p {
  font-size: 16px;
  margin: 5px 0;
  color: #666;
}

.menu-item .price {
  font-weight: bold;
  font-size: 18px;
  margin-top: 10px;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.menu-item .quantity-selector {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.menu-item .quantity-button {
  background-color: #ccc;
  border: none;
  color: white;
  font-size: 14px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-item .quantity-selector input {
  width: 50px;
  text-align: center;
  font-size: 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 5px;
  margin-left: 5px;
  margin-right: 5px;
}

.menu-item .add-to-cart {
  background-color:#ff4e00;
  color: #fff;
  padding: 12px 30px;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  display: block;
  margin-top: 10px;
}

.menu-item .add-to-cart:hover {
  background-color: #d35400;
}

header h1 {
  text-align: center;
  font-size: 36px;
  color: var(--text-color);
  margin-bottom: 20px;
}

.menu-item .image .fire-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  color: red;
}

.icon {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 10px;
  border-radius: 50%;
  font-size: 14px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.7);
}

.icon.hit {
  background-color: #ff4e00;
}

.icon.veg {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 10px;
  border-radius: 50%;
  font-size: 14px;
  color: #fff;
  background-color: #449d18;
}

.k-section .menu {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/*  WOK */
.wok-section {
  padding: 40px 0;
  background-color: #f9f9f9;
}

.wok-slider {
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}

.wok-container {
  display: flex;
  transition: transform 0.5s ease;
}

.wok-card {
  flex: 0 0 280px;
  margin-right: 24px;
  background: #fff;
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.wok-image {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  margin-bottom: 16px;
}

.wok-card.chicken .wok-image {
  background-image: url('./img/Слой 619.png');
}

.wok-card.beef .wok-image {
  background-image: url('./img/Слой 672.png');
}

.wok-card.shrimp .wok-image {
  background-image: url('./img/Слой 672.png');
}

.wok-card.vegetarian .wok-image {
  background-image: url('./img/Слой 672.png');
}

.wok-card h2 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #2c3e50;
}

.wok-info {
  color: #7f8c8d;
  font-size: 14px;
  margin-bottom: 16px;
  flex-grow: 1;
}

.wok-price-quantity {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.wok-price {
  font-size: 20px;
  font-weight: bold;
  color: #2c3e50;
}

.wok-quantity-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.wok-quantity-btn {
  width: 32px;
  height: 32px;
  border: 1px solid #e2e2e2;
  background: none;
  border-radius: 4px;
  cursor: pointer;
  color: #2c3e50;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wok-quantity-btn:hover {
  background-color: #f5f5f5;
}

.wok-quantity {
  font-size: 16px;
  color: #2c3e50;
}

.wok-add-to-cart {
  width: 100%;
  padding: 12px;
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.wok-add-to-cart:hover {
  background-color: #45a049;
}

/* Стилі для навігаційних точок */
.wok-section .nav-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.wok-section .nav-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ddd;
  border: none;
  padding: 0;
  cursor: pointer;
}

.wok-section .nav-dots .dot.active {
  background: #4CAF50;
}






/* Спільні для заголовків секцій */
.pizza-section header,
.set-section header,
.rolls-section header,
.wok-section header {
  position: relative;
  text-align: center;
  margin: 40px 0;
}

.pizza-section header h1,
.set-section header h1,
.rolls-section header h1,
.wok-section header h1 {
  font-size: 36px;
  color: #333;
  display: inline-block;
  padding: 0 50px;
  position: relative;
}

/* Ліва частина для всіх заголовків */
.pizza-section header h1::before,
.set-section header h1::before,
.rolls-section header h1::before,
.wok-section header h1::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 25px;
  background-image: url("./img/title_1.png");
  background-size: contain;
  background-repeat: no-repeat;
}

/* Права частина для всіх заголовків */
.pizza-section header h1::after,
.set-section header h1::after,
.rolls-section header h1::after,
.wok-section header h1::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 25px;
  background-image: url("./img/title_2.png");
  background-size: contain;
  background-repeat: no-repeat;
}

/* нова секція роллів */
.new-rolls-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.new-roll-item {
  background: #fff;
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: relative;
}

.new-roll-image {
  width: 100%;
  height: 200px;
  border-radius: 8px;
  margin-bottom: 16px;
  position: relative;
}


.new-roll-item:nth-child(1) .new-roll-image {
  background-image: url("./img/roll_0.png");
  background-size: cover;
  background-position: center;
}

.new-roll-item:nth-child(2) .new-roll-image {
  background-image: url("./img/Слой 8.png");
  background-size: cover;
  background-position: center;
}

.new-roll-item:nth-child(3) .new-roll-image {
  background-image: url("./img/Слой 9.png");
  background-size: cover;
  background-position: center;
}

.new-roll-item:nth-child(4) .new-roll-image {
  background-image: url("./img/Слой 10.png");
  background-size: cover;
  background-position: center;
}

.new-label {
  position: absolute;
  top: -10px;
  left: -10px;
  background: #95c11f;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  text-transform: uppercase;
  transform: rotate(-45deg);
}

.spicy-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #ff4e00;
  font-size: 20px;
}

.new-roll-item h2 {
  font-size: 18px;
  color: #333;
  margin-bottom: 8px;
  text-align: center;
}

.new-roll-item p {
  color: #666;
  font-size: 14px;
  text-align: center;
  margin-bottom: 16px;
}

.new-roll-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.new-roll-price .price {
  font-weight: bold;
  font-size: 18px;
  color: #333;
}

.new-roll-quantity {
  display: flex;
  align-items: center;
  gap: 8px;
}

.new-roll-quantity button {
  width: 24px;
  height: 24px;
  border: 1px solid #ddd;
  background: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.new-roll-quantity .count {
  width: 30px;
  text-align: center;
}

.new-roll-cart-btn {
  width: 100%;
  padding: 12px;
  background: #ff4e00;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s;
}

.new-roll-cart-btn:hover {
  background: #e64600;
}

.new-rolls-section {
  background-color: #000;
  padding: 40px 0;
}

.new-rolls-section header h1 {
  color: #fff;
}

/* Стилі для секції з причинами */
.reasons-section {
  padding: 60px 0;
  background: #fff;
}

.reasons-title {
  text-align: center;
  font-size: 36px;
  color: #333;
  margin-bottom: 50px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.leaf-left,
.leaf-right {
  width: 40px;
  height: 25px;
  background-size: contain;
  background-repeat: no-repeat;
}

.leaf-left {
  background-image: url("./img/title_1.png");
}

.leaf-right {
  background-image: url("./img/title_2.png");
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.reason-item {
  text-align: center;
}

.reason-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Іконки для кожної причини */
.reason-icon.manual-work {
  background-image: url("./img/kitchen.png");
}

.reason-icon.ingredients {
  background-image: url("./img/dish.png");
}

.reason-icon.low-price {
  background-image: url("./img/money.png");
}

.reason-icon.quality-control {
  background-image: url("./img/like_4.png");
}

.reason-icon.fresh-fish {
  background-image: url("./img/fish.png");
}

.reason-icon.japan-rice {
  background-image: url("./img/rice.png");
}

.reason-icon.more-filling {
  background-image: url("./img/octopus.png");
}

.reason-icon.no-substitute {
  background-image: url("./img/knife.png");
}

.reason-icon.italian-flour {
  background-image: url("./img/pizza.png");
}

.reason-icon.no-mayo {
  background-image: url("./img/feather-hand-drawn-outline_10.png");
}

.reason-item p {
  font-size: 14px;
  color: #333;
  line-height: 1.4;
}

/*  відгуки */
.reviews-section {
  padding: 60px 0;
  background: #fff;
}

.reviews-title {
  text-align: center;
  font-size: 36px;
  color: #333;
  margin-bottom: 50px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.reviews-title .leaf-left,
.reviews-title .leaf-right {
  width: 40px;
  height: 25px;
  background-size: contain;
  background-repeat: no-repeat;
}

.reviews-title .leaf-left {
  background-image: url("./img/title_1.png");
}

.reviews-title .leaf-right {
  background-image: url("./img/title_2.png");
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.review-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.reviewer-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-image: url("./img/womenReviews.png");
  background-size: cover;
  background-position: center;
}

.reviewer-info {
  flex-grow: 1;
}

.reviewer-name {
  color: #4a76a8;
  font-size: 14px;
  margin-bottom: 4px;
  font-weight: 500;
}

.review-date {
  color: #818c99;
  font-size: 12px;
}

.review-text {
  font-size: 14px;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.4;
}

.review-image {
  width: 100%;
  height: 200px;
  background-image: url("./img/reviewContent.png");
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  margin-bottom: 15px;
}

.review-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.like-btn,
.comment-btn {
  background: none;
  border: none;
  color: #818c99;
  cursor: pointer;
  font-size: 16px;
  padding: 0;
}

.comments-count {
  color: #818c99;
  font-size: 14px;
}

.telegram-subscribe-btn {
  /* Keep the same styles as vk-subscribe-btn */
  background-color: #0088cc; /* Telegram's brand color */
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.telegram-subscribe-btn:hover {
  background-color: #0077b5;
}

.telegram-subscribe-btn i {
  font-size: 16px;
}



/*  Контактна секція */
.contact-section {
  padding: 60px 0;
  color: white;
  background-image: url("./img/contact__details.png");
  background-size: 220%;
  background-position: left center;
  background-repeat: no-repeat;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: flex-end;
}

.contact-form {
  width: 50%;
  max-width: 500px;
  padding: 40px;
}

.contact-form h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color: white;
}

.contact-form h3 {
  font-size: 24px;
  margin-bottom: 30px;
  color: white;
  font-weight: normal;
}

.form-group {
  position: relative;
  margin-bottom: 30px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 0;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-size: 16px;
  outline: none;
}

.form-group label {
  position: absolute;
  top: 10px;
  left: 0;
  color: rgba(255, 255, 255, 0.5);
  transition: 0.3s;
  pointer-events: none;
}

.form-group input:focus ~ label,
.form-group input:valid ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:valid ~ label {
  top: -20px;
  font-size: 12px;
  color: white;
}

.submit-btn {
  background: #ff4d00;
  color: white;
  padding: 15px 40px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.submit-btn:hover {
  background: #ff6626;
}

/* Адаптивність */
@media (max-width: 900px) {
  .contact-section {
    background-size: 100%;
    min-height: auto;
    padding: 300px 0 60px 0;
  }

  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-form {
    margin: 0 auto;
    padding: 20px;
  }

  .contact-form h3 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .contact-form h3 {
    font-size: 24px;
  }
}

.delivery-info {
  padding: 60px 0;
  background: #fff;
}

.delivery-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  padding: 0 20px;
}

.delivery-content {
  padding-right: 40px;
}

.delivery-content h1 {
  font-size: 36px;
  color: #333;
  margin-bottom: 30px;
}

.delivery-text p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.delivery-image {
  background-image: url("./img/Карта градиента 7842.png");
  /* Замініть на вашу назву файлу */
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  min-height: 400px;
}




/* Стилі для футера */
.main-footer {
  background-color: #062e26;
  padding: 60px 0;
  color: white;
}

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

.footer-menu {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
}

.menu-column h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 500;
}

.menu-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-column ul li {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: color 0.2s;
}

.menu-column ul li:hover {
  color: #fff;
}


/* футер */
.main-footer {
  background-color: #062e26;
  padding: 60px 0 30px;
  color: white;
}

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

.footer-menu {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.menu-column h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 500;
}

.menu-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-column ul li {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: color 0.2s;
}

.menu-column ul li:hover {
  color: #fff;
}

/* Нижня частина футера */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  white-space: nowrap;
}

.footer-links {
  flex-grow: 1;
  text-align: center;
  padding: 0 40px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

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

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 20px;
  transition: color 0.2s;
}

.social-icon:hover {
  color: #fff;
}


  .footer-bottom {
    gap: 20px;
    text-align: center;
  }

  .footer-links {
    padding: 15px 0;
  }




.location i,
.email i,
.cabinet i,
.cart i {
  color: var(--primary-color);
  font-size: 18px;
}

.fa-solid {
  font-size: 18px;
}

.slider-arrow i {
  color: white;
  font-size: 20px;
}

.cart {
  position: relative;
}

.cart i {
  margin-right: 5px;
}

header h1 {
  color: #2c3e50;
  font-size: 36px;
  font-weight: normal;
  position: relative;
  padding: 0 60px;
}

header h1::before,
header h1::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

header h1::before {
  left: 0;
  transform: translateY(-50%);
  background-image: url("./img/title_1.png");
}

header h1::after {
  right: 0;
  transform: translateY(-50%);
  background-image: url("./img/title_2.png");
}

.menu-section {
  margin-bottom: 60px;
}

.nav-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 30px 0;
}

.nav-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  padding: 0;
}

.nav-dots .dot.active {
  background: var(--primary-color);
}


.section-nav {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
  padding-left: 20px;  /* Відступ зліва */
}

.section-nav .nav-link {
  text-decoration: none;
  font-size: 18px;
  color: #fff;
  position: relative;
}

.section-nav .nav-link.active {
  color: var(--orange-color);  
}

.section-nav .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--orange-color);
}
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 500px;
  border-radius: 5px;
  transform: scale(0.7);
  transition: transform 0.3s ease;
}

.modal.show {
  display: block;
  opacity: 1;
}

.modal.show .modal-content {
  transform: scale(1);
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

#continueShoppingBtn, #goToCartBtn {
  padding: 10px 20px;
  margin: 10px 5px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#continueShoppingBtn {
  background-color: #4CAF50;
  color: white;
}

#goToCartBtn {
  background-color: #008CBA;
  color: white;
}

.set-item {
  transition: opacity 0.3s ease-in-out;
  opacity: 0;
  display: none;
}

.set-item[style*="display: block"] {
  opacity: 1;
  display: block;
}

.nav-dots .arrow {
  cursor: pointer;
  transition: opacity 0.3s;
  width: 40px;
  height: 40px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border: none;
  background-color: transparent;
}

.nav-dots .arrow.prev {
  background-image: url("./img/left_arrow_pagination.png");
}

.nav-dots .arrow.next {
  background-image: url("./img/right_arrow_pagination.png");
}

.nav-dots .arrow:hover {
  opacity: 0.8;
}
.set-item,
.menu-item,
.pizza-card,
.new-roll-item {
    transition: opacity 0.3s ease-in-out;
    opacity: 0;
    display: none;
}

.set-item[style*="display: block"],
.menu-item[style*="display: block"],
.pizza-card[style*="display: block"],
.new-roll-item[style*="display: block"] {
    opacity: 1;
    display: block;
}

.nav-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 30px 0;
}



/* Modal Window Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.show {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
}

.modal-content {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  max-width: 400px;
  width: 90%;
  position: relative;
  transform: translateY(-20px);
  transition: transform 0.3s ease;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.modal.show .modal-content {
  transform: translateY(0);
}

.modal h2 {
  color: #333;
  margin-bottom: 15px;
  font-size: 24px;
}

.modal p {
  color: #666;
  margin-bottom: 20px;
  font-size: 16px;
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  color: #999;
  cursor: pointer;
  transition: color 0.2s;
}

.close:hover {
  color: #333;
}

#continueShoppingBtn,
#goToCartBtn {
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s;
  margin: 0 10px;
}

#continueShoppingBtn {
  background-color: #f5f5f5;
  color: #333;
}

#continueShoppingBtn:hover {
  background-color: #e5e5e5;
}

#goToCartBtn {
  background-color: #ff5722;
  color: white;
}

#goToCartBtn:hover {
  background-color: #f4511e;
}


#formModal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

#formModal .modal-content {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  max-width: 400px;
  width: 90%;
  position: relative;
  margin: 15% auto;
  text-align: center;
}

#formModal h2 {
  color: #333;
  margin-bottom: 15px;
}

#formModal p {
  color: #666;
  margin-bottom: 20px;
}

#okButton {
  padding: 10px 30px;
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s;
}

#okButton:hover {
  background-color: #45a049;
}

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

.close-form:hover {
  color: #333;
}
/* Add to your existing CSS */
.menu-list {
  position: relative;
}

.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  border-radius: 4px;
  padding: 20px;
  z-index: 1000;
  width: 800px;
}

.submenu-column {
  float: left;
  width: 25%;
  padding: 0 15px;
}

.submenu-column h3 {
  color: #333;
  margin-bottom: 10px;
  font-size: 16px;
}

.submenu-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.submenu-column ul li {
  margin: 8px 0;
}

.submenu-column ul li a {
  color: #666;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.submenu-column ul li a:hover {
  color: #ff5722;
}

.arrow {
  display: inline-block;
  transition: transform 0.3s;
}

.menu-link.active {
  color: #ffffff;
}
/* Add to your existing CSS file */
.cart-item {
  display: flex;
  padding: 15px;
  border-bottom: 1px solid #eee;
  align-items: center;
}

.cart-item-image {
  width: 80px;
  height: 80px;
  background-size: cover;
  background-position: center;
  margin-right: 15px;
  border-radius: 4px;
}

.cart-item-info {
  flex: 1;
}

.cart-item-info h3 {
  margin: 0 0 5px 0;
}

.cart-item-price {
  color: #ff5722;
  font-weight: bold;
  margin: 5px 0;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.cart-item-controls button {
  padding: 5px 10px;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  border-radius: 4px;
}

.cart-item-remove {
  color: red;
  border: none !important;
  font-size: 20px;
}

.cart-total-wrapper {
  padding: 15px;
  font-size: 18px;
  font-weight: bold;
  text-align: right;
  border-top: 2px solid #eee;
  margin-top: 15px;
}

.empty-cart {
  text-align: center;
  padding: 20px;
  color: #666;
}

.checkout-btn {
  background: #4CAF50;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
  margin-top: 10px;
}
.main-slider {
  position: relative;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: none;
  background-color: transparent;
  cursor: pointer;
  z-index: 10;
}

.slider-arrow.prev {
  left: 20px;
  background-image: url('img/left-arrow.png'); 
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.slider-arrow.next {
  right: 20px;
  background-image: url('img/right-arrow.png'); 
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.slider-arrow:hover {
  opacity: 0.8;
}

.sauce-select {
  margin-bottom: 15px;
}

.sauce-select select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #fff;
  font-size: 14px;
  color: #333;
}

.sauce-select select:focus {
  outline: none;
  border-color: #ff4e00;
}
.order-controls {
  border-top: 1px solid #eee;
  padding-top: 15px;
  margin: 15px 0;
}

.quantity-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.quantity-btn {
  width: 30px;
  height: 30px;
  border: 1px solid #ddd;
  background: none;
  border-radius: 4px;
  cursor: pointer;
}

.addon-price {
  color: #000000;
  font-weight: bold;
}

.add-addon {
  background: #000000;
  color: white;
  border: none;
  padding: 5px 15px;
  border-radius: 4px;
  cursor: pointer;
}

.sauce-select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-bottom: 15px;
}

.price-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;

}
.count-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100px;
  height: 30px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
}

.item-control {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
  font-size: 18px;
  color: #333;
  transition: background-color 0.3s;
}

.item-control:hover {
  background-color: #f5f5f5;
}

.item-count {
  flex: 1;
  text-align: center;
  font-size: 16px;
  color: #333;
  user-select: none;
}

/* Replace this where you have quantity controls */
.new-roll-quantity {
  display: flex;
  align-items: center;
  gap: 10px;
}

.new-roll-quantity .count-wrap {
  margin: 0 10px;
}
/* WOK section styles */
.order-controls {
  border-top: 1px solid #eee;
  padding-top: 15px;
  margin: 15px 0;
}

.quantity-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.count-wrap {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
}

.item-control {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
  background: #fff;
  transition: background-color 0.2s;
}

.item-control:hover {
  background-color: #f5f5f5;
}

.item-count {
  padding: 0 10px;
  min-width: 20px;
  text-align: center;
}

.addon-price {
  color: #000000;
  font-weight: bold;
}

.add-addon {
  background: #ff2f00;
  color: white;
  border: none;
  padding: 5px 15px;
  border-radius: 4px;
  cursor: pointer;
}

.sauce-select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-bottom: 15px;
  background: #fff;
}

.price-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.price {
  font-size: 24px;
  color: #000000;
  font-weight: bold;
}

.new-roll-quantity {
  display: flex;
  align-items: center;
  gap: 10px;
}

.minus, 
.plus {
  width: 30px;
  height: 30px;
  border: 1px solid #ddd;
  background: none;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.minus:hover,
.plus:hover {
  background-color: #f5f5f5;
}

.count {
  font-size: 18px;
  min-width: 20px;
  text-align: center;
}

.add-to-cart {
  width: 100%;
  background: #ff4e00;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background-color 0.3s;
}

.add-to-cart:hover {
  background: #e64600;
}
.count-wrap {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
  background-color: #e4e4e4; /* Додано сірий фон для всієї комірки */
}

.item-control {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
  background-color: #e4e4e4; /* Той самий сірий фон */
}

.item-count {
  padding: 0 10px;
  min-width: 20px;
  text-align: center;
  background-color: #e4e4e4; /* Той самий сірий фон */
}

.item-control:hover {
  background-color: #d4d4d4;
}
/* WOK section styles */
.wok-section {
  padding: 40px 0;
}

.wok-container {
  display: flex;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.wok-card {
  flex: 1;
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  max-width: calc(25% - 20px); /* 4 картки в ряд */
}

.wok-image {
  width: 100%;
  height: 180px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  margin-bottom: 15px;
}

.wok-info {
  margin-bottom: 15px;
  color: #666;
}

.order-controls {
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

.quantity-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.sauce-select {
  width: 100%;
  padding: 8px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.price-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

/* Стилі для модальних форм */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-overlay.active {
    display: flex;
    animation: fadeIn 0.3s ease-in-out;
}

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

.modal-content {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

/* Стилі для всіх форм введення в модальних вікнах */
#cabinet-modal input,
#checkout-modal input,
#checkout-modal textarea,
#callbackModal input,
#callbackModal textarea,
.contact-modal input,
.contact-modal textarea,
.about-modal input,
.about-modal textarea {
    color: #333 !important;
    background-color: #fff !important;
}

/* Стилі для форми замовлення */
#checkout-form input,
#checkout-form select,
#checkout-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 15px;
    color: #333;
    background-color: #fff;
}

/* Стилі для кнопки "Оформити замовлення" */
.checkout-btn {
    background: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
    font-size: 16px;
    transition: background-color 0.3s;
}

.checkout-btn:hover {
    background: #45a049;
}

/* Стилі для модальних вікон "Про нас" та "Контакти" */
.about-modal .modal-content,
.contact-modal .modal-content {
    text-align: left;
    padding: 30px;
}

.about-modal h2,
.contact-modal h2 {
    margin-bottom: 20px;
    color: #333;
    font-size: 24px;
}

.contact-modal .contact-info {
    margin-bottom: 20px;
}

.contact-modal .contact-info p {
    margin: 10px 0;
    display: flex;
    align-items: center;
}

.contact-modal .contact-info i {
    margin-right: 10px;
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.contact-modal .social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.contact-modal .social-icon {
    color: #333;
    font-size: 24px;
    transition: color 0.3s;
}

.contact-modal .social-icon:hover {
    color: var(--primary-color);
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 0;
    border: none;
    border-bottom: 1px solid #4CAF50;
    outline: none;
    background: transparent;
    font-size: 16px;
    color: #333; /* Додано колір тексту */
}

.form-group label {
    position: absolute;
    top: 10px;
    left: 0;
    color: #666;
    transition: 0.3s;
    pointer-events: none;
}

.form-group input:focus ~ label,
.form-group input:valid ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:valid ~ label {
    top: -20px;
    font-size: 14px;
    color: #4CAF50;
}

.submit-btn {
    width: 100%;
    padding: 12px;
    background-color: #FF5722;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #F4511E;
}

/* Анімація появи модального вікна */
.modal-overlay.active {
    display: flex;
    animation: fadeIn 0.3s ease-in-out;
}

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

/* Додайте ці стилі для всіх модальних вікон з формами */
#cabinet-modal input,
#checkout-modal input,
#callbackModal input,
#callbackModal textarea {
    color: #333 !important; /* Важливо для перевизначення інших стилів */
}

/* Стилі для форми зворотного дзвінка */
#callbackForm input,
#callbackForm textarea {
    color: #333;
    background-color: transparent;
}

/* Базові стилі для кнопок мови */
.lang-btn {
    background: transparent;
    border: 1px solid #ddd;
    color: #333;
    font-size: 14px;
    font-weight: 600;
    padding: 6px 10px;
    margin: 0 3px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

/* Стилі для наведення на кнопку */
.lang-btn:hover {
    background-color: rgba(149, 193, 31, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Стилі для активної кнопки */
.lang-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Стилі для активної кнопки при наведенні */
.lang-btn.active:hover {
    background-color: #85ad1c;
    border-color: #85ad1c;
}

/* Фокус для доступності */
.lang-btn:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(149, 193, 31, 0.3);
}

/* Стилі для перемикача мови */
.language-switcher {
    display: flex;
    align-items: center;
    margin-left: 15px;
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--text-color);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 10px;
    margin: 0 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    letter-spacing: 0.5px;
    position: relative;
}

.lang-btn:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.lang-btn:hover {
    color: var(--primary-color);
}

.lang-btn:hover:after {
    width: 80%;
}

.lang-btn.active {
    color: var(--primary-color);
    font-weight: 700;
}

.lang-btn.active:after {
    width: 80%;
    background-color: var(--primary-color);
}

/* Розділювач між кнопками мови */
.lang-btn:first-child:after {
    content: '';
    position: absolute;
    right: -2px;
    top: 50%;
    height: 12px;
    width: 1px;
    background-color: #ddd;
    transform: translateY(-50%);
}
/* Адаптивність */
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
  
  .slide-info h1 {
    font-size: 48px;
  }
  
  .slide-info p {
    font-size: 20px;
  }
  
  .discount-badge {
    width: 100px;
    height: 100px;
    right: 40px;
  }
  
  .discount-badge .percent {
    font-size: 28px;
  }
  
  .submenu {
    width: 90%;
    max-width: 800px;
  }
  
  .delivery-container {
    grid-template-columns: 3fr 2fr;
  }
}

@media (max-width: 992px) {
  .container {
    max-width: 720px;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .menu-wrapper {
    flex-direction: column;
  }
  
  .menu-list {
    flex-direction: column;
    width: 100%;
    display: none;
  }
  
  .menu-list.active {
    display: flex;
  }
  
  .user-controls {
    margin-top: 20px;
    width: 100%;
    justify-content: space-between;
  }
  
  .main-slider {
    height: 400px;
  }
  
  .slide-info h1 {
    font-size: 36px;
  }
  
  .slide-info p {
    font-size: 18px;
  }
  
  .discount-badge {
    width: 90px;
    height: 90px;
    right: 20px;
    top: 20px;
  }
  
  .discount-badge .percent {
    font-size: 24px;
  }
  
  .reasons-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .delivery-container {
    grid-template-columns: 1fr;
  }
  
  .delivery-content {
    padding-right: 0;
  }
  
  .delivery-image {
    min-height: 300px;
    order: -1;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .contact-section {
    background-size: 100%;
    min-height: auto;
    padding: 300px 0 60px 0;
  }
  
  .contact-form {
    margin: 0 auto;
    padding: 20px;
  }
  
  .submenu {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 540px;
  }
  
  .top-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .callback-btn {
    width: 100%;
  }
  
  .main-slider {
    height: 350px;
  }
  
  .slide-info {
    padding-top: 50px;
  }
  
  .slide-info h1 {
    font-size: 28px;
  }
  
  .slide-info p {
    font-size: 16px;
  }
  
  .discount-badge {
    width: 80px;
    height: 80px;
    font-size: 14px;
    right: 10px;
  }
  
  .discount-badge .percent {
    font-size: 22px;
  }
  
  .details-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
  
  .reasons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-menu {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-bottom {
    gap: 20px;
    text-align: center;
  }
  
  .footer-links {
    padding: 15px 0;
  }
  
  .title-wrapper h1 {
    font-size: 28px;
  }
  
  .title-line {
    width: 40px;
  }
}

@media (max-width: 576px) {
  .container {
    width: 100%;
    padding: 0 15px;
  }
  
  .main-slider {
    height: 300px;
  }
  
  .slide-info {
    padding-top: 30px;
  }
  
  .slide-info h1 {
    font-size: 24px;
  }
  
  .slide-info p {
    font-size: 14px;
  }
  
  .discount-badge {
    width: 70px;
    height: 70px;
    font-size: 12px;
    right: 10px;
    top: 10px;
  }
  
  .discount-badge .percent {
    font-size: 20px;
  }
  
  .details-btn {
    padding: 8px 16px;
    font-size: 12px;
  }
  
  .title-wrapper h1 {
    font-size: 24px;
  }
  
  .title-line {
    width: 30px;
  }
  
  .reasons-grid {
    grid-template-columns: 1fr;
  }
  
  .reasons-title,
  .reviews-title {
    font-size: 24px;
  }
  
  .contact-form h3 {
    font-size: 24px;
  }
  
  .delivery-content h1 {
    font-size: 24px;
  }
  
  .footer-menu {
    grid-template-columns: 1fr;
  }
  
  .modal-content {
    padding: 20px;
    margin: 20px;
  }
  
  #continueShoppingBtn,
  #goToCartBtn {
    display: block;
    width: 100%;
    margin: 10px 0;
  }
  
  .submenu {
    grid-template-columns: 1fr;
  }
  
}

/* Мобільне меню */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 1000;
  background: var(--primary-color);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Покращена адаптивність для головного слайдера */
@media (max-width: 992px) {
  .main-slider {
    height: 450px;
  }
  
  .slide-info h1 {
    font-size: 42px;
  }
  
  .slide-info p {
    font-size: 18px;
  }
  
  .discount-badge {
    width: 90px;
    height: 90px;
    right: 20px;
    font-size: 18px;
  }
  
  .discount-badge {
    width: 90px;
    height: 90px;
    right: 20px;
    top: 20px;
  }
  
  .discount-badge .percent {
    font-size: 24px;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .menu-list {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    z-index: 999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 50px 20px;
  }
  
  .menu-list.active {
    display: flex;
  }
  
  .menu-list li {
    width: 100%;
    text-align: center;
  }
  
  .menu-link {
    display: block;
    padding: 15px;
    font-size: 18px;
  }
  
  .language-switcher {
    margin: 20px 0;
  }
}

@media (max-width: 768px) {
  .main-slider {
    height: 400px;
  }
  
  .slide-info {
    padding-top: 50px;
  }
  
  .slide-info h1 {
    font-size: 36px;
  }
  
  .slide-info p {
    font-size: 16px;
  }
  
  .discount-badge {
    width: 80px;
    height: 80px;
    font-size: 14px;
    right: 10px;
  }
  
  .discount-badge .percent {
    font-size: 22px;
  }
  
  .details-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .main-slider {
    height: 350px;
  }
  
  .slide-info {
    padding-top: 30px;
  }
  
  .slide-info h1 {
    font-size: 28px;
  }
  
  .slide-info p {
    font-size: 14px;
  }
  
  .discount-badge {
    width: 70px;
    height: 70px;
    font-size: 12px;
    right: 10px;
    top: 10px;
  }
  
  .discount-badge .percent {
    font-size: 20px;
  }
  
  .details-btn {
    padding: 8px 16px;
    font-size: 12px;
  }
}


@media (max-width: 992px) {
  .wok-card {
    flex: 0 0 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
}

@media (max-width: 576px) {
  .wok-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .wok-section .nav-dots .arrow {
    width: 30px;
    height: 30px;
  }
}
/* Додайте цей код до вашого CSS */
@media (max-width: 992px) {
  .menu-list li:first-child .submenu {
    display: none;
    position: static;
    width: 100%;
    box-shadow: none;
    margin-top: 10px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.8);
  }
  
  .menu-list li:first-child.show-submenu .submenu {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
  
  .menu-list li:first-child .menu-link {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}



@media (max-width: 1200px) {
  .wok-section .wok-card {
    flex: 0 0 calc(33.33% - 15px);
  }
}

@media (max-width: 992px) {
  .wok-section .wok-card {
    flex: 0 0 calc(50% - 15px);
  }
}

@media (max-width: 576px) {
  .wok-section .wok-container {
    flex-wrap: wrap;
  }
  
  .wok-section .wok-card {
    flex: 0 0 100%;
  }
}

/* Адаптивність для WOK секції */
@media (max-width: 992px) {
  .wok-container {
    flex-wrap: wrap;
  }
  
  .wok-card {
    flex: 0 0 calc(50% - 10px);
  }
}

@media (max-width: 576px) {
  .wok-card {
    flex: 0 0 100%;
  }
}
/* CSS код для стилізації навігації WOK секції */
.wok-section {
  padding: 40px 0;
  background-color: #f9f9f9;
}
.wok-slider {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  overflow: visible; /* Змініть з overflow: hidden на overflow: visible */
}
.wok-container {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

/* Стилі для навігаційних точок і стрілок */
.wok-section .nav-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 20px auto;
}

.wok-section .nav-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ddd;
  border: none;
  padding: 0;
  cursor: pointer;
}

.wok-section .nav-dots .dot.active {
  background: #95c11f;
}

.wok-section .nav-dots .arrow {
  width: 30px;
  height: 30px;
  border: none;
  background-color: transparent;
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.wok-section .nav-dots .arrow.prev {
  background-image: url("img/left_arrow_pagination.png");
}

.wok-section .nav-dots .arrow.next {
  background-image: url("img/right_arrow_pagination.png");
}
/* Стилі для модальних вікон */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.show {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
}

.modal-content {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  max-width: 400px;
  width: 90%;
  position: relative;
  transform: translateY(-20px);
  transition: transform 0.3s ease;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.modal.show .modal-content {
  transform: translateY(0);
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  color: #999;
  cursor: pointer;
  transition: color 0.2s;
}

.close:hover {
  color: #333;
}

/* Стилі для кошика */
.cart-item {
  display: flex;
  padding: 15px;
  border-bottom: 1px solid #eee;
  align-items: center;
}

.cart-item-image {
  width: 80px;
  height: 80px;
  background-size: cover;
  background-position: center;
  margin-right: 15px;
  border-radius: 4px;
}

.cart-item-info {
  flex: 1;
}

.cart-item-info h3 {
  margin: 0 0 5px 0;
  font-size: 16px;
}

.cart-item-price {
  color: #ff5722;
  font-weight: bold;
  margin: 5px 0;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.cart-item-controls button {
  padding: 5px 10px;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  border-radius: 4px;
}

.cart-item-remove {
  color: red;
  border: none !important;
  font-size: 20px;
}

.cart-total-wrapper {
  padding: 15px;
  font-size: 18px;
  font-weight: bold;
  text-align: right;
  border-top: 2px solid #eee;
  margin-top: 15px;
}

.empty-cart {
  text-align: center;
  padding: 20px;
  color: #666;
}

.checkout-btn {
  background: #4CAF50;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
  margin-top: 10px;
}

/* Стилі для форми оформлення замовлення */
#checkout-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  text-align: left;
}

#checkout-form select,
#checkout-form input,
#checkout-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-bottom: 15px;
}

#checkout-form h3 {
  margin: 20px 0 10px;
  text-align: left;
}

#checkout-form .submit-btn {
  width: 100%;
  padding: 12px;
  background: #4CAF50;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 10px;
}

#checkout-form .submit-btn:hover {
  background: #45a049;
}
/* Стилі для WOK секції з навігацією внизу */
.wok-section {
  padding: 40px 0;
  background-color: #f9f9f9;
  position: relative;
}

.wok-slider {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.wok-container {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 20px;
  overflow-x: hidden; /* Приховуємо горизонтальний скролбар */
}




/* Адаптивність для WOK секції */
@media (max-width: 992px) {
  .wok-card {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
  }
}

@media (max-width: 576px) {
  .wok-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .wok-section .nav-dots .arrow {
    width: 25px;
    height: 25px;
  }
}
/* Стилі для модального вікна "ДЕТАЛЬНІШЕ" */
.details-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.details-modal.show {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
}

.details-modal-content {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  max-width: 800px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(-30px);
  transition: transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.details-modal.show .details-modal-content {
  transform: translateY(0);
}

.details-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  color: #999;
  cursor: pointer;
  transition: color 0.2s;
}

.details-close:hover {
  color: #333;
}

#details-title {
  color: #95c11f;
  margin-bottom: 20px;
  padding-right: 30px;
  font-size: 24px;
}

#details-content {
  color: #333;
  line-height: 1.6;
}

#details-content p {
  margin-bottom: 15px;
}

/* Адаптивність для модального вікна */
@media (max-width: 768px) {
  .details-modal-content {
    padding: 20px;
    width: 95%;
  }
  
  #details-title {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .details-modal-content {
    padding: 15px;
  }
  
  #details-title {
    font-size: 18px;
  }
  
  .details-close {
    top: 10px;
    right: 15px;
    font-size: 24px;
  }
}

/* Додайте ці стилі для модальних вікон "Про нас" та "Контакти" */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.show {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
}

.modal-content {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  max-width: 500px;
  width: 90%;
  position: relative;
  transform: translateY(-20px);
  transition: transform 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.modal.show .modal-content {
  transform: translateY(0);
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  color: #999;
  cursor: pointer;
  transition: color 0.2s;
}

.close:hover {
  color: #333;
}

/* Стилі для контактної інформації */
.contact-info {
  margin-bottom: 20px;
}

.contact-info p {
  margin: 10px 0;
  display: flex;
  align-items: center;
}

.contact-info i {
  margin-right: 10px;
  color: var(--primary-color);
  width: 20px;
  text-align: center;
}

/* Стилі для соціальних іконок */
.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icon {
  color: #333;
  font-size: 24px;
  transition: color 0.3s;
}

.social-icon:hover {
  color: var(--primary-color);
}

/* Виправлення для полів введення в модальних формах */
.modal input,
.modal textarea,
.modal select,
#callbackModal input,
#callbackModal textarea,
#checkout-modal input,
#checkout-modal textarea,
#checkout-modal select,
.contact-form input,
.contact-form textarea {
  color: #333 !important;
  background-color: #fff !important;
}

/* Виправлення для кнопки "Оформити замовлення" */
.checkout-btn {
  background: #4CAF50;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
  margin-top: 10px;
  font-size: 16px;
  transition: background-color 0.3s;
}

.checkout-btn:hover {
  background: #45a049;
}

/* Адаптивність для кнопки "Оформити замовлення" */
@media (max-width: 576px) {
  .checkout-btn {
    padding: 12px 15px;
    font-size: 14px;
  }
}
/* Стилі для модального вікна оформлення замовлення */
#checkout-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

#checkout-modal.show {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
}

#checkout-modal .modal-content {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(-20px);
  transition: transform 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

#checkout-modal.show .modal-content {
  transform: translateY(0);
}

#checkout-modal h2 {
  color: #333;
  margin-bottom: 20px;
  font-size: 24px;
  text-align: center;
}

#checkout-modal .close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  color: #999;
  cursor: pointer;
  transition: color 0.2s;
}

#checkout-modal .close:hover {
  color: #333;
}

/* Стилі для форми оформлення замовлення */
#checkout-form {
  text-align: left;
}

#checkout-form .form-group {
  margin-bottom: 15px;
}

#checkout-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #333;
}

#checkout-form input,
#checkout-form select,
#checkout-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #fff;
  color: #333;
  font-size: 16px;
}

#checkout-form input:focus,
#checkout-form select:focus,
#checkout-form textarea:focus {
  border-color: var(--primary-color);
  outline: none;
}

#checkout-form h3 {
  margin: 25px 0 15px;
  color: #333;
  font-size: 18px;
  border-bottom: 1px solid #eee;
  padding-bottom: 8px;
}

#checkout-form .delivery-options {
  margin-bottom: 20px;
}

#checkout-form .delivery-option {
  margin-bottom: 10px;
}

#checkout-form .delivery-option input[type="radio"] {
  margin-right: 10px;
  width: auto;
}

#checkout-form .delivery-option label {
  display: inline-block;
  font-weight: normal;
}

#checkout-form .submit-btn {
  width: 100%;
  padding: 14px;
  background: #4CAF50;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.3s;
}

#checkout-form .submit-btn:hover {
  background: #45a049;
}

/* Стилі для полів Нової Пошти */
#np-city,
#np-office {
  margin-bottom: 10px;
}

/* Адаптивність для модального вікна */
@media (max-width: 768px) {
  #checkout-modal .modal-content {
    padding: 20px;
    max-width: 90%;
  }
  
  #checkout-modal h2 {
    font-size: 20px;
  }
  
  #checkout-form input,
  #checkout-form select,
  #checkout-form textarea {
    padding: 10px;
    font-size: 14px;
  }
  
  #checkout-form .submit-btn {
    padding: 12px;
    font-size: 14px;
  }
}

/* Виправлення для полів введення в модальних формах */
#checkout-modal input,
#checkout-modal select,
#checkout-modal textarea {
  color: #333 !important;
  background-color: #fff !important;
}

/* Стилі для відображення помилок валідації */
.error-message {
  color: #ff0000;
  font-size: 12px;
  margin-top: 5px;
  display: none;
}

.error input,
.error select,
.error textarea {
  border-color: #ff0000;
}

.error .error-message {
  display: block;
}
/* Додайте ці стилі для модальних вікон "Про нас" та "Контакти" */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.show {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
}

.modal-content {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  max-width: 500px;
  width: 90%;
  position: relative;
  transform: translateY(-20px);
  transition: transform 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.modal.show .modal-content {
  transform: translateY(0);
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  color: #999;
  cursor: pointer;
  transition: color 0.2s;
}

.close:hover {
  color: #333;
}

/* Стилі для контактної інформації */
.contact-info {
  margin-bottom: 20px;
}

.contact-info p {
  margin: 10px 0;
  display: flex;
  align-items: center;
}

.contact-info i {
  margin-right: 10px;
  color: var(--primary-color);
  width: 20px;
  text-align: center;
}

/* Стилі для соціальних іконок */
.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icon {
  color: #333;
  font-size: 24px;
  transition: color 0.3s;
}

.social-icon:hover {
  color: var(--primary-color);
}

/* Виправлення для полів введення в модальних формах */
.modal input,
.modal textarea,
.modal select,
#callbackModal input,
#callbackModal textarea,
#checkout-modal input,
#checkout-modal textarea,
#checkout-modal select,
.contact-form input,
.contact-form textarea {
  color: #333 !important;
  background-color: #fff !important;
}

/* Виправлення для кнопки "Оформити замовлення" */
.checkout-btn {
  background: #4CAF50;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
  margin-top: 10px;
  font-size: 16px;
  transition: background-color 0.3s;
}

.checkout-btn:hover {
  background: #45a049;
}

/* Адаптивність для кнопки "Оформити замовлення" */
@media (max-width: 576px) {
  .checkout-btn {
    padding: 12px 15px;
    font-size: 14px;
  }
}
/* Стилі для WOK секції з навігацією внизу */
.wok-section {
  padding: 40px 0;
  background-color: #f9f9f9;
  position: relative;
}

.wok-slider {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.wok-container {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 20px;
  overflow-x: hidden; /* Приховуємо горизонтальний скролбар */
}




/* Адаптивність для WOK секції */
@media (max-width: 992px) {
  .wok-card {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
  }
}

@media (max-width: 576px) {
  .wok-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .wok-section .nav-dots .arrow {
    width: 25px;
    height: 25px;
  }
}
/* Стилі для модального вікна "ДЕТАЛЬНІШЕ" */
.details-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.details-modal.show {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
}

.details-modal-content {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  max-width: 800px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(-30px);
  transition: transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.details-modal.show .details-modal-content {
  transform: translateY(0);
}

.details-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  color: #999;
  cursor: pointer;
  transition: color 0.2s;
}

.details-close:hover {
  color: #333;
}

#details-title {
  color: #95c11f;
  margin-bottom: 20px;
  padding-right: 30px;
  font-size: 24px;
}

#details-content {
  color: #333;
  line-height: 1.6;
}

#details-content p {
  margin-bottom: 15px;
}

/* Адаптивність для модального вікна */
@media (max-width: 768px) {
  .details-modal-content {
    padding: 20px;
    width: 95%;
  }
  
  #details-title {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .details-modal-content {
    padding: 15px;
  }
  
  #details-title {
    font-size: 18px;
  }
  
  .details-close {
    top: 10px;
    right: 15px;
    font-size: 24px;
  }
}

/* Додайте ці стилі для модальних вікон "Про нас" та "Контакти" */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.show {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
}

.modal-content {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  max-width: 500px;
  width: 90%;
  position: relative;
  transform: translateY(-20px);
  transition: transform 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.modal.show .modal-content {
  transform: translateY(0);
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  color: #999;
  cursor: pointer;
  transition: color 0.2s;
}

.close:hover {
  color: #333;
}

/* Стилі для контактної інформації */
.contact-info {
  margin-bottom: 20px;
}

.contact-info p {
  margin: 10px 0;
  display: flex;
  align-items: center;
}

.contact-info i {
  margin-right: 10px;
  color: var(--primary-color);
  width: 20px;
  text-align: center;
}

/* Стилі для соціальних іконок */
.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icon {
  color: #333;
  font-size: 24px;
  transition: color 0.3s;
}

.social-icon:hover {
  color: var(--primary-color);
}

/* Виправлення для полів введення в модальних формах */
.modal input,
.modal textarea,
.modal select,
#callbackModal input,
#callbackModal textarea,
#checkout-modal input,
#checkout-modal textarea,
#checkout-modal select,
.contact-form input,
.contact-form textarea {
  color: #333 !important;
  background-color: #fff !important;
}

/* Виправлення для кнопки "Оформити замовлення" */
.checkout-btn {
  background: #4CAF50;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
  margin-top: 10px;
  font-size: 16px;
  transition: background-color 0.3s;
}

.checkout-btn:hover {
  background: #45a049;
}

/* Адаптивність для кнопки "Оформити замовлення" */
@media (max-width: 576px) {
  .checkout-btn {
    padding: 12px 15px;
    font-size: 14px;
  }
}
/* Стилі для WOK секції з навігацією внизу */
.wok-section {
  padding: 40px 0;
  background-color: #f9f9f9;
  position: relative;
}

.wok-slider {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.wok-container {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 20px;
  overflow-x: hidden; /* Приховуємо горизонтальний скролбар */
}




/* Адаптивність для WOK секції */
@media (max-width: 992px) {
  .wok-card {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
  }
}

@media (max-width: 576px) {
  .wok-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .wok-section .nav-dots .arrow {
    width: 25px;
    height: 25px;
  }
}
/* Стилі для модального вікна "ДЕТАЛЬНІШЕ" */
.details-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.details-modal.show {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
}

.details-modal-content {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  max-width: 800px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(-30px);
  transition: transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.details-modal.show .details-modal-content {
  transform: translateY(0);
}

.details-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  color: #999;
  cursor: pointer;
  transition: color 0.2s;
}

.details-close:hover {
  color: #333;
}

#details-title {
  color: #95c11f;
  margin-bottom: 20px;
  padding-right: 30px;
  font-size: 24px;
}

#details-content {
  color: #333;
  line-height: 1.6;
}

#details-content p {
  margin-bottom: 15px;
}

/* Адаптивність для модального вікна */
@media (max-width: 768px) {
  .details-modal-content {
    padding: 20px;
    width: 95%;
  }
  
  #details-title {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .details-modal-content {
    padding: 15px;
  }
  
  #details-title {
    font-size: 18px;
  }
  
  .details-close {
    top: 10px;
    right: 15px;
    font-size: 24px;
  }
}

/* Додайте ці стилі для модальних вікон "Про нас" та "Контакти" */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.show {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
}

.modal-content {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  max-width: 500px;
  width: 90%;
  position: relative;
  transform: translateY(-20px);
  transition: transform 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.modal.show .modal-content {
  transform: translateY(0);
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  color: #999;
  cursor: pointer;
  transition: color 0.2s;
}

.close:hover {
  color: #333;
}

/* Стилі для контактної інформації */
.contact-info {
  margin-bottom: 20px;
}

.contact-info p {
  margin: 10px 0;
  display: flex;
  align-items: center;
}

.contact-info i {
  margin-right: 10px;
  color: var(--primary-color);
  width: 20px;
  text-align: center;
}

/* Стилі для соціальних іконок */
.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icon {
  color: #333;
  font-size: 24px;
  transition: color 0.3s;
}

.social-icon:hover {
  color: var(--primary-color);
}

/* Виправлення для полів введення в модальних формах */
.modal input,
.modal textarea,
.modal select,
#callbackModal input,
#callbackModal textarea,
#checkout-modal input,
#checkout-modal textarea,
#checkout-modal select,
.contact-form input,
.contact-form textarea {
  color: #333 !important;
  background-color: #fff !important;
}

/* Виправлення для кнопки "Оформити замовлення" */
.checkout-btn {
  background: #4CAF50;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
  margin-top: 10px;
  font-size: 16px;
  transition: background-color 0.3s;
}

.checkout-btn:hover {
  background: #45a049;
}

/* Адаптивність для кнопки "Оформити замовлення" */
@media (max-width: 576px) {
  .checkout-btn {
    padding: 12px 15px;
    font-size: 14px;
  }
}
/* Стилі для WOK секції з навігацією внизу */
.wok-section {
  padding: 40px 0;
  background-color: #f9f9f9;
  position: relative;
}

.wok-slider {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.wok-container {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 20px;
  overflow-x: hidden; /* Приховуємо горизонтальний скролбар */
}




/* Адаптивність для WOK секції */
@media (max-width: 992px) {
  .wok-card {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
  }
}

@media (max-width: 576px) {
  .wok-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .wok-section .nav-dots .arrow {
    width: 25px;
    height: 25px;
  }
}
/* Стилі для модального вікна "ДЕТАЛЬНІШЕ" */
.details-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.details-modal.show {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
}

.details-modal-content {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  max-width: 800px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(-30px);
  transition: transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.details-modal.show .details-modal-content {
  transform: translateY(0);
}

.details-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  color: #999;
  cursor: pointer;
  transition: color 0.2s;
}

.details-close:hover {
  color: #333;
}

#details-title {
  color: #95c11f;
  margin-bottom: 20px;
  padding-right: 30px;
  font-size: 24px;
}

#details-content {
  color: #333;
  line-height: 1.6;
}

#details-content p {
  margin-bottom: 15px;
}

/* Адаптивність для модального вікна */
@media (max-width: 768px) {
  .details-modal-content {
    padding: 20px;
    width: 95%;
  }
  
  #details-title {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .details-modal-content {
    padding: 15px;
  }
  
  #details-title {
    font-size: 18px;
  }
  
  .details-close {
    top: 10px;
    right: 15px;
    font-size: 24px;
  }
}

/* Додайте ці стилі для модальних вікон "Про нас" та "Контакти" */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.show {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
}

.modal-content {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  max-width: 500px;
  width: 90%;
  position: relative;
  transform: translateY(-20px);
  transition: transform 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.modal.show .modal-content {
  transform: translateY(0);
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  color: #999;
  cursor: pointer;
  transition: color 0.2s;
}

.close:hover {
  color: #333;
}

/* Стилі для контактної інформації */
.contact-info {
  margin-bottom: 20px;
}

.contact-info p {
  margin: 10px 0;
  display: flex;
  align-items: center;
}

.contact-info i {
  margin-right: 10px;
  color: var(--primary-color);
  width: 20px;
  text-align: center;
}

/* Стилі для соціальних іконок */
.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icon {
  color: #333;
  font-size: 24px;
  transition: color 0.3s;
}

.social-icon:hover {
  color: var(--primary-color);
}

/* Виправлення для полів введення в модальних формах */
.modal input,
.modal textarea,
.modal select,
#callbackModal input,
#callbackModal textarea,
#checkout-modal input,
#checkout-modal textarea,
#checkout-modal select,
.contact-form input,
.contact-form textarea {
  color: #333 !important;
  background-color: #fff !important;
}

/* Виправлення для кнопки "Оформити замовлення" */
.checkout-btn {
  background: #4CAF50;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
  margin-top: 10px;
  font-size: 16px;
  transition: background-color 0.3s;
}

.checkout-btn:hover {
  background: #45a049;
}

/* Адаптивність для кнопки "Оформити замовлення" */
@media (max-width: 576px) {
  .checkout-btn {
    padding: 12px 15px;
    font-size: 14px;
  }
}
/* Стилі для WOK секції з навігацією внизу */
.wok-section {
  padding: 40px 0;
  background-color: #f9f9f9;
  position: relative;
}

.wok-slider {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.wok-container {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 20px;
  overflow-x: hidden; /* Приховуємо горизонтальний скролбар */
}




/* Адаптивність для WOK секції */
@media (max-width: 992px) {
  .wok-card {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
  }
}

@media (max-width: 576px) {
  .wok-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .wok-section .nav-dots .arrow {
    width: 25px;
    height: 25px;
  }
}
/* Стилі для модального вікна "ДЕТАЛЬНІШЕ" */
.details-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.details-modal.show {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
}

.details-modal-content {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  max-width: 800px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(-30px);
  transition: transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.details-modal.show .details-modal-content {
  transform: translateY(0);
}

.details-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  color: #999;
  cursor: pointer;
  transition: color 0.2s;
}

.details-close:hover {
  color: #333;
}

#details-title {
  color: #95c11f;
  margin-bottom: 20px;
  padding-right: 30px;
  font-size: 24px;
}

#details-content {
  color: #333;
  line-height: 1.6;
}

#details-content p {
  margin-bottom: 15px;
}

/* Адаптивність для модального вікна */
@media (max-width: 768px) {
  .details-modal-content {
    padding: 20px;
    width: 95%;
  }
  
  #details-title {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .details-modal-content {
    padding: 15px;
  }
  
  #details-title {
    font-size: 18px;
  }
  
  .details-close {
    top: 10px;
    right: 15px;
    font-size: 24px;
  }
}

/* Додайте ці стилі для модальних вікон "Про нас" та "Контакти" */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.show {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
}

.modal-content {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  max-width: 500px;
  width: 90%;
  position: relative;
  transform: translateY(-20px);
  transition: transform 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.modal.show .modal-content {
  transform: translateY(0);
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  color: #999;
  cursor: pointer;
  transition: color 0.2s;
}

.close:hover {
  color: #333;
}

/* Стилі для контактної інформації */
.contact-info {
  margin-bottom: 20px;
}

.contact-info p {
  margin: 10px 0;
  display: flex;
  align-items: center;
}

.contact-info i {
  margin-right: 10px;
  color: var(--primary-color);
  width: 20px;
  text-align: center;
}

/* Стилі для соціальних іконок */
.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icon {
  color: #333;
  font-size: 24px;
  transition: color 0.3s;
}

.social-icon:hover {
  color: var(--primary-color);
}

/* Виправлення для полів введення в модальних формах */
.modal input,
.modal textarea,
.modal select,
#callbackModal input,
#callbackModal textarea,
#checkout-modal input,
#checkout-modal textarea,
#checkout-modal select,
.contact-form input,
.contact-form textarea {
  color: #333 !important;
  background-color: #fff !important;
}

/* Виправлення для кнопки "Оформити замовлення" */
.checkout-btn {
  background: #4CAF50;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
  margin-top: 10px;
  font-size: 16px;
  transition: background-color 0.3s;
}

.checkout-btn:hover {
  background: #45a049;
}

/* Адаптивність для кнопки "Оформити замовлення" */
@media (max-width: 576px) {
  .checkout-btn {
    padding: 12px 15px;
    font-size: 14px;
  }
}
/* Стилі для WOK секції з навігацією внизу */
.wok-section {
  padding: 40px 0;
  background-color: #f9f9f9;
  position: relative;
}

.wok-slider {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.wok-container {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 20px;
  overflow-x: hidden; /* Приховуємо горизонтальний скролбар */
}




/* Адаптивність для WOK секції */
@media (max-width: 992px) {
  .wok-card {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
  }
}

@media (max-width: 576px) {
  .wok-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .wok-section .nav-dots .arrow {
    width: 25px;
    height: 25px;
  }
}
/* Стилі для модального вікна "ДЕТАЛЬНІШЕ" */
.details-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.details-modal.show {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
}

.details-modal-content {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  max-width: 800px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(-30px);
  transition: transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.details-modal.show .details-modal-content {
  transform: translateY(0);
}

.details-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  color: #999;
  cursor: pointer;
  transition: color 0.2s;
}

.details-close:hover {
  color: #333;
}

#details-title {
  color: #95c11f;
  margin-bottom: 20px;
  padding-right: 30px;
  font-size: 24px;
}

#details-content {
  color: #333;
  line-height: 1.6;
}

#details-content p {
  margin-bottom: 15px;
}

/* Адаптивність для модального вікна */
@media (max-width: 768px) {
  .details-modal-content {
    padding: 20px;
    width: 95%;
  }
  
  #details-title {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .details-modal-content {
    padding: 15px;
  }
  
  #details-title {
    font-size: 18px;
  }
  
  .details-close {
    top: 10px;
    right: 15px;
    font-size: 24px;
  }
}

/* Додайте ці стилі для модальних вікон "Про нас" та "Контакти" */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Продовження стилів для модального вікна оформлення замовлення */
.modal.show {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
}

/* Стилі для форми оформлення замовлення */
#checkout-form {
  width: 100%;
}

#checkout-form .form-row {
  margin-bottom: 15px;
}

#checkout-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
  color: #333;
}

#checkout-form input,
#checkout-form select,
#checkout-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  color: #333 !important;
  background-color: #fff !important;
}

#checkout-form input:focus,
#checkout-form select:focus,
#checkout-form textarea:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 2px rgba(149, 193, 31, 0.1);
}

#checkout-form textarea {
  min-height: 100px;
  resize: vertical;
}

#checkout-form .delivery-options {
  margin: 20px 0;
}

#checkout-form .delivery-option {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

#checkout-form .delivery-option input[type="radio"] {
  width: auto;
  margin-right: 10px;
}

#checkout-form .delivery-address {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

#checkout-form .nova-poshta-fields {
  margin-top: 15px;
  display: none;
}

#checkout-form .nova-poshta-fields.active {
  display: block;
}

#checkout-form .payment-methods {
  margin: 20px 0;
}

#checkout-form .payment-method {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

#checkout-form .payment-method input[type="radio"] {
  width: auto;
  margin-right: 10px;
}

#checkout-form .submit-btn {
  width: 100%;
  padding: 14px;
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-top: 20px;
}

#checkout-form .submit-btn:hover {
  background-color: #45a049;
}

/* Стилі для полів Нової Пошти */
#np-city,
#np-office {
  margin-bottom: 10px;
}

/* Стилі для відображення помилок валідації */
.error-message {
  color: #ff0000;
  font-size: 12px;
  margin-top: 5px;
  display: none;
}

.error input,
.error select,
.error textarea {
  border-color: #ff0000;
}

.error .error-message {
  display: block;
}

/* Стилі для модальних вікон "Про нас" та "Контакти" */
#about-us-modal .modal-content,
#contacts-modal .modal-content {
  text-align: left;
}

#about-us-modal h2,
#contacts-modal h2 {
  color: #333;
  margin-bottom: 20px;
  font-size: 24px;
  text-align: center;
}

#about-us-modal p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 16px;
}

#contacts-modal .contact-info {
  margin-bottom: 25px;
}

#contacts-modal .contact-info p {
  margin: 12px 0;
  display: flex;
  align-items: center;
  color: #333;
  font-size: 16px;
}

#contacts-modal .contact-info i {
  margin-right: 15px;
  color: var(--primary-color);
  width: 20px;
  text-align: center;
  font-size: 18px;
}

#contacts-modal .social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 25px;
}

#contacts-modal .social-icon {
  color: #333;
  font-size: 28px;
  transition: color 0.3s, transform 0.2s;
}

#contacts-modal .social-icon:hover {
  color: var(--primary-color);
  transform: scale(1.1);
}

/* Анімації для модальних вікон */
@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.modal.show .modal-content {
  animation: modalFadeIn 0.3s forwards;
}

.modal.hide .modal-content {
  animation: modalFadeOut 0.3s forwards;
}

/* Додаткові стилі для кнопок в модальних вікнах */
.modal-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s;
  margin: 0 10px;
}

.modal-btn.primary {
  background-color: var(--primary-color);
  color: white;
}

.modal-btn.primary:hover {
  background-color: #85ad1c;
}

.modal-btn.secondary {
  background-color: #f5f5f5;
  color: #333;
}

.modal-btn.secondary:hover {
  background-color: #e5e5e5;
}

/* Стилі для мобільних пристроїв */
@media (max-width: 768px) {
  #checkout-modal .modal-content {
    padding: 20px;
    max-width: 90%;
  }
  
  #checkout-modal h2 {
    font-size: 20px;
  }
  
  #checkout-form input,
  #checkout-form select,
  #checkout-form textarea {
    padding: 10px;
    font-size: 14px;
  }
  
  #checkout-form .submit-btn {
    padding: 12px;
    font-size: 14px;
  }
  
  #contacts-modal .social-icons {
    gap: 15px;
  }
  
  #contacts-modal .social-icon {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  #checkout-modal .modal-content {
    padding: 15px;
    max-width: 95%;
  }
  
  #checkout-modal h2 {
    font-size: 18px;
    margin-bottom: 15px;
  }
  
  #checkout-form label {
    font-size: 14px;
  }
  
  #checkout-form input,
  #checkout-form select,
  #checkout-form textarea {
    padding: 8px;
    font-size: 13px;
  }
  
  #checkout-form .submit-btn {
    padding: 10px;
    font-size: 13px;
  }
  
  .modal-btn {
    padding: 10px 16px;
    font-size: 13px;
    margin: 0 5px;
  }
  
  #contacts-modal .contact-info p {
    font-size: 14px;
  }
  
  #contacts-modal .social-icons {
    gap: 12px;
  }
  
  #contacts-modal .social-icon {
    font-size: 22px;
  }
}

/* Додаткові стилі для форми оформлення замовлення */
#checkout-form .form-section {
  margin-bottom: 25px;
}

#checkout-form .form-section-title {
  font-size: 18px;
  color: #333;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 1px solid #eee;
}

#checkout-form .form-row {
  margin-bottom: 15px;
}

#checkout-form .form-row.two-columns {
  display: flex;
  gap: 15px;
}

#checkout-form .form-row.two-columns > div {
  flex: 1;
}

#checkout-form .form-note {
  font-size: 12px;
  color: #666;
  margin-top: 5px;
}

#checkout-form .required-label::after {
  content: "*";
  color: #ff0000;
  margin-left: 3px;
}

#checkout-form .order-summary {
  background-color: #f9f9f9;
  padding: 15px;
  border-radius: 4px;
  margin-bottom: 20px;
}

#checkout-form .order-summary-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}

#checkout-form .order-summary-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 14px;
}

#checkout-form .order-summary-total {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #ddd;
  font-weight: bold;
}

/* Адаптивність для двоколонкового макету */
@media (max-width: 576px) {
  #checkout-form .form-row.two-columns {
    flex-direction: column;
    gap: 10px;
  }
}

/* Стилі для чекбоксів та радіокнопок */
#checkout-form .checkbox-group,
#checkout-form .radio-group {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

#checkout-form .checkbox-group input[type="checkbox"],
#checkout-form .radio-group input[type="radio"] {
  width: auto;
  margin-right: 10px;
}

#checkout-form .checkbox-group label,
#checkout-form .radio-group label {
  display: inline;
  margin-bottom: 0;
  font-weight: normal;
}

/* Стилі для кнопки "Оформити замовлення" */
#checkout-form .submit-btn-wrapper {
  margin-top: 25px;
  text-align: center;
}

#checkout-form .submit-btn {
  min-width: 200px;
  padding: 14px 30px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

#checkout-form .submit-btn:hover {
  background-color: #45a049;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#checkout-form .submit-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Додаткові стилі для полів введення */
#checkout-form input::placeholder,
#checkout-form textarea::placeholder {
  color: #999;
}

#checkout-form input:focus::placeholder,
#checkout-form textarea:focus::placeholder {
  color: #bbb;
}

/* Стилі для підказок */
.tooltip {
  position: relative;
  display: inline-block;
  margin-left: 5px;
  cursor: help;
}

.tooltip .tooltip-icon {
  color: #999;
  font-size: 14px;
}

.tooltip .tooltip-text {
  visibility: hidden;
  width: 200px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 4px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 12px;
  font-weight: normal;
}

.tooltip .tooltip-text::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #333 transparent transparent transparent;
}

.tooltip:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}
/* Стилі для зеленої кнопки */
.news-button {
  background-color: #28a745; /* Зелений колір */
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

/* Ефект пульсації */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Клас для активування анімації */
.news-button.pulse {
  animation: pulse 1.5s infinite;
}
.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px 0;
    border: none;
    border-bottom: 1px solid #4CAF50;
    outline: none;
    background: transparent;
    font-size: 16px;
}
#checkout-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

#checkout-modal .modal-content {
  background-color: #fff;
  margin: 15vh auto;
  padding: 20px;
  border-radius: 5px;
  max-width: 600px;
  position: relative;
}

#checkout-modal .close {
  position: absolute;
  right: 20px;
  top: 10px;
  font-size: 28px;
  cursor: pointer;
}
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

.modal-content {
  position: relative;
  background-color: #fff;
  margin: 15vh auto;
  padding: 20px;
  width: 90%;
  max-width: 600px;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.close {
  position: absolute;
  right: 20px;
  top: 10px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  color: #333;
}

.close:hover {
  color: #000;
}

.delivery-info {
  margin-top: 20px;
}

.delivery-info p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.delivery-info ul {
  margin: 15px 0;
  padding-left: 20px;
}

.delivery-info li {
  margin-bottom: 10px;
}
/* Додайте ці стилі до вашого файлу style.css */
.menu-list li:first-child {
  position: relative !important;
}

.submenu {
  /* Базові стилі будуть встановлені через JavaScript */
}

.submenu-column {
  float: left;
  width: 25%;
  padding: 0 15px;
}

.submenu-column h3 {
  color: #333;
  margin-bottom: 10px;
  font-size: 16px;
}

.submenu-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.submenu-column ul li {
  margin: 8px 0;
}

.submenu-column ul li a {
  color: #666;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.submenu-column ul li a:hover {
  color: #ff5722;
}

/* Виправлення для мобільних пристроїв */
@media (max-width: 992px) {
  .submenu-column {
    width: 50%;
  }
}

@media (max-width: 576px) {
  .submenu-column {
    width: 100%;
    float: none;
  }
}
/* Стилі для підменю з покращеним контрастом та видимістю */
.menu-list li:first-child {
  position: relative !important;
}

.submenu {
  display: none !important;
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  background: rgba(255, 255, 255, 0.95) !important; /* Напівпрозорий білий фон */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important; /* Сильніша тінь */
  border-radius: 4px !important;
  padding: 20px !important;
  z-index: 1000 !important;
  width: 800px !important;
  opacity: 1 !important;
  visibility: visible !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important; /* Додаємо тонку рамку */
}

/* При наведенні показуємо підменю */
.menu-list li:first-child:hover .submenu {
  display: block !important;
}

.submenu-column {
  float: left !important;
  width: 25% !important;
  padding: 0 15px !important;
}

.submenu-column h3 {
  color: #333 !important;
  margin-bottom: 10px !important;
  font-size: 16px !important;
  font-weight: bold !important; /* Жирний шрифт для заголовків */
  text-shadow: 0 1px 0 white !important; /* Тінь тексту для кращої читабельності */
}

.submenu-column ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.submenu-column ul li {
  margin: 8px 0 !important;
  background: rgba(255, 255, 255, 0.8) !important; /* Фон для пунктів меню */
  padding: 3px 5px !important; /* Відступи для пунктів меню */
  border-radius: 3px !important;
}

.submenu-column ul li a {
  color: #333 !important; /* Темніший колір тексту для кращої читабельності */
  text-decoration: none !important;
  font-size: 14px !important;
  transition: color 0.3s !important;
  display: block !important; /* Блочне відображення для більшої області кліку */
}

.submenu-column ul li a:hover {
  color: #ff5722 !important;
}

/* Стилі для мобільних пристроїв */
@media (max-width: 992px) {
  .menu-list li:first-child .submenu {
    position: static !important;
    width: 100% !important;
    box-shadow: none !important;
    margin-top: 10px !important;
    padding: 10px !important;
    background: rgba(255, 255, 255, 0.95) !important;
  }

  .menu-list li:first-child.show-submenu .submenu {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 15px !important;
  }
}
/* Додайте ці стилі до вашого файлу style.css */
.menu-list li:first-child {
  position: relative !important;
}

.submenu {
  display: none;
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  background: white !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
  border-radius: 4px !important;
  padding: 20px !important;
  z-index: 1000 !important;
  width: 800px !important;
}

.submenu-column {
  float: left;
  width: 25%;
  padding: 0 15px;
}

/* Виправлення для мобільних пристроїв */
@media (max-width: 992px) {
  .menu-list li:first-child .submenu {
    position: static !important;
    width: 100% !important;
    box-shadow: none !important;
  }
  
  .menu-list li:first-child.show-submenu .submenu {
    display: block !important;
  }
}
/* Повністю нові стилі для підменю з максимальною специфічністю */
body .menu-list > li:first-child {
  position: relative !important;
  z-index: 9999 !important;
}

body .menu-list > li:first-child .submenu {
  display: none !important;
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  background-color: #ffffff !important;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5) !important;
  border: 2px solid #95c11f !important; /* Зелена рамка відповідно до кольору сайту */
  border-radius: 4px !important;
  padding: 20px !important;
  z-index: 9999 !important;
  width: 800px !important;
  max-width: 90vw !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}

/* Примусово показуємо підменю при наведенні */
body .menu-list > li:first-child:hover .submenu {
  display: flex !important;
  flex-wrap: wrap !important;
}

/* Стилі для колонок підменю */
body .submenu-column {
  width: 25% !important;
  padding: 0 15px !important;
  box-sizing: border-box !important;
}

body .submenu-column h3 {
  color: #333333 !important;
  margin-bottom: 15px !important;
  font-size: 16px !important;
  font-weight: bold !important;
}

body .submenu-column ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

body .submenu-column ul li {
  margin: 10px 0 !important;
}

body .submenu-column ul li a {
  color: #555555 !important;
  text-decoration: none !important;
  font-size: 14px !important;
  display: block !important;
  padding: 5px !important;
  transition: all 0.3s ease !important;
}

body .submenu-column ul li a:hover {
  color: #95c11f !important;
  background-color: #f5f5f5 !important;
  padding-left: 10px !important;
}

/* Мобільна версія */
@media (max-width: 992px) {
  body .menu-list > li:first-child .submenu {
    position: static !important;
    width: 100% !important;
    max-width: 100% !important;
    display: none !important;
    flex-direction: column !important;
  }
  
  body .menu-list > li:first-child.show-submenu .submenu {
    display: flex !important;
  }
  
  body .submenu-column {
    width: 100% !important;
    margin-bottom: 15px !important;
  }
}