* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  background: #ffffff;
  color: #000000;
  line-height: 1.6;
}

/* Стилі хедера */
.header {
  background: #ffffff;
  box-shadow: 0 0.4vw 1.6vw rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1vw 0;
}

.nav-container {
  max-width: 84vw;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2vw;
}

.logo {
  font-size: 1.5vw;
  font-weight: bold;
  color: #000000;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: #000000;
  text-decoration: none;
  font-size: 1.2vw;
  padding: 1vw 1.5vw;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #000000;
}

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 15vw;
  box-shadow: 0 0.4vw 1.2vw rgba(0, 0, 0, 0.1);
  border-radius: 0.5vw;
  padding: 0.5vw 0;
}

.nav-item:hover .dropdown {
  display: block;
}

.dropdown-item {
  color: #000000;
  text-decoration: none;
  font-size: 1vw;
  padding: 0.8vw 1.5vw;
  display: block;
}

.dropdown-item:hover {
  background: #000000;
  color: #ffffff;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5vw;
}

.phone-number {
  color: #000000;
  text-decoration: none;
  font-size: 1.1vw;
  padding: 0.8vw 1.5vw;
  background: #ffffff;
  border: 0.1vw solid #000000;
  border-radius: 1vw;
  transition: background 0.3s ease;
}

.phone-number:hover {
  background: #000000;
  color: #ffffff;
}

.cart-icon {
  position: relative;
  padding: 0.8vw;
  background: #ffffff;
  color: #000000;
  border: 0.1vw solid #000000;
  border-radius: 50%;
  text-decoration: none;
  font-size: 1.2vw;
  transition: transform 0.3s ease;
}

.cart-icon:hover {
  transform: scale(1.1);
}

.cart-count {
  position: absolute;
  top: -0.3vw;
  right: -0.3vw;
  background: #000000;
  color: #ffffff;
  border-radius: 50%;
  width: 1.5vw;
  height: 1.5vw;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9vw;
}

/* Мобільне меню */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #000000;
  font-size: 5vw;
  cursor: pointer;
}

.nav-menu.active {
  display: flex;
}

/* Основний контент */
.main-content {
  max-width: 90vw;
  margin: 3vw auto;
  padding: 0 2vw;
}

.video-background {
  position: relative;
  width: 100%;
  height: 40vw;
  overflow: hidden;
  z-index: 0;
}

.video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -1;
}

.video-overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #000000;
  text-align: center;
  z-index: 1;
  text-shadow: 0 0.5vw 1vw rgba(255, 255, 255, 0.7);
}

.video-overlay-text h1 {
  font-size: 4vw;
  margin-bottom: 1vw;
  text-transform: uppercase;
}

.video-overlay-text p {
  font-size: 2vw;
}

.arcade-section {
  margin-top: 3vw;
}

.arcade-section h2 {
  font-size: 2.5vw;
  text-align: center;
  margin-bottom: 2vw;
  text-transform: uppercase;
}

.arcade-items {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2vw;
}

.arcade-item {
  background: #ffffff;
  border: 0.1vw solid #000000;
  border-radius: 1vw;
  padding: 1.5vw;
  text-align: center;
  width: 18vw;
  transition: transform 0.3s ease;
}

.arcade-item:hover {
  transform: translateY(-0.5vw);
}

.arcade-item img {
  width: 100%;
  border-radius: 0.5vw;
}

.arcade-item h3 {
  font-size: 1.5vw;
  margin: 1vw 0;
}

.price {
  font-size: 1.2vw;
  color: #000000;
}


.video-background {
  position: relative;
  width: 100%;
  height: 40vw;
  overflow: hidden;
  z-index: 0;
}

.video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -1;
}

.video-overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  text-align: center;
  z-index: 1;
  text-shadow: 0 0.5vw 1vw rgba(0, 0, 0, 0.7);
}

.video-overlay-text h1 {
  font-size: 4vw;
  margin-bottom: 1vw;
  text-transform: uppercase;
}

.video-overlay-text p {
  font-size: 2vw;
}
.pinball-remember-text {
  text-align: center;
  font-size: 1.6vw;
  margin: 2.5vw auto;
  font-weight: 600;
  font-family: "Orbitron", sans-serif;
  color: #000000;
  max-width: 60vw; /* обмежуємо ширину */
}
.galaga-video-section {
  width: 100%;
  overflow: hidden;
  margin-top: 4vw;
}

.galaga-video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.8vw;
  box-shadow: 0 0.5vw 1.5vw rgba(0, 0, 0, 0.2);
}
.other-products {
  padding: 4vw 2vw;
  text-align: center;
}

.other-products-title {
  font-size: 2.8vw;
  font-family: "Orbitron", sans-serif;
  margin-bottom: 3vw;
}

.other-products-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0vw;
}

.product-card {
  width: 16vw;
  padding: 1.5vw;
  text-align: center;
}

.product-card img {
  width: 100%;
  max-width: 10vw;
  height: auto;
  margin-bottom: 1vw;
}

.product-title {
  font-size: 1.2vw;
  font-weight: bold;
  font-family: "Orbitron", sans-serif;
  margin-bottom: 1vw;
}

.red {
  color: #e90000;
}

.product-card p {
  font-size: 1vw;
  color: #000000;
  line-height: 1.4;
}
.youtube-showroom {
  padding: 1vw;
  display: flex;
  justify-content: center;
}

.youtube-container {
  width: 80vw;
  max-width: 960px;
  aspect-ratio: 16 / 9;
  position: relative;
  box-shadow: 0 0.5vw 1.5vw rgba(0, 0, 0, 0.2);
  border-radius: 0.8vw;
  overflow: hidden;
}

.youtube-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.comment-form-section {
  background-color: #000000;
  color: #ffffff;
  padding: 3vw 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  font-size: 4vw;
  text-align: center;
}

.comment-form-wrapper {
  max-width: 72vw;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3vw;
}

.comment-form {
  flex: 1 1 45%;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2vw;
  justify-content: center;
}
.comment-contact-info p {
  font-size: 5.5vw;
  line-height: 1.6;
  margin-bottom: 3vw;
  text-align: center;
}

.form-row {
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
}

.form-row label {
  font-size: 0.9vw;
  margin-bottom: 0.4vw;
  color: #ffffff;
}

.form-row input,
.form-row textarea {
  padding: 0.6vw;
  border: none;
  border-bottom: 0.1vw solid #ffffff;
  background-color: transparent;
  color: #ffffff;
  font-size: 0.9vw;
  resize: none;
}

.comment-send-btn {
  margin-top: 1vw;
  padding: 0.7vw 1.5vw;
  background-color: transparent;
  border: 0.1vw solid #ffffff;
  color: #ffffff;
  font-size: 0.9vw;
  cursor: pointer;
  transition: background 0.3s ease;
  align-self: flex-start;
}

.comment-send-btn:hover {
  background-color: #ffffff;
  color: #000000;
}

.comment-contact-info {
  flex: 1 1 40%;
  text-align: left;
}

.comment-contact-info img {
  max-width: 30%;
  height: auto;
  margin-bottom: 1.5vw;
}

.comment-contact-info p {
  font-size: 0.9vw;
  line-height: 1.5;
  margin-bottom: 1vw;
}
.review-slider-section {
  background-color: #111;
  padding: 4vw 2vw;
  overflow: hidden;
}

.review-slider-container {
  display: flex;
  gap: 2vw;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1vw;
}

.review-slider-container::-webkit-scrollbar {
  height: 0.5vw;
}
.review-slider-container::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 1vw;
}

.review-card {
  background-color: #222;
  color: #fff;
  padding: 1.5vw;
  border-radius: 0.8vw;
  min-width: 20vw;
  max-width: 22vw;
  flex: 0 0 auto;
  scroll-snap-align: start;
  box-shadow: 0 0.5vw 1.5vw rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1vw;
}

.avatar {
  width: 3vw;
  height: 3vw;
  background-color: #555;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
}

.avatar.letter {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2vw;
  color: white;
  background-color: #ff5722;
}

.review-info h4 {
  font-size: 1vw;
  margin: 0;
}

.review-info .review-date {
  font-size: 0.8vw;
  color: #aaa;
}

.review-info {
  margin-left: 0.8vw;
  flex-grow: 1;
}

.google-icon {
  width: 1.5vw;
  height: auto;
}

.review-stars {
  color: #fbc02d;
  font-size: 1vw;
  margin-bottom: 1vw;
}

.review-card p {
  font-size: 0.95vw;
  line-height: 1.4;
  color: #ccc;
}
.map-section {
  width: 100%;
  margin: 4vw 0;
}

.map-container {
  position: relative;
  width: 100%;
  padding-top: 28.125%; /* було 56.25%, тепер у 2 рази менше */
  overflow: hidden;
  border-radius: 0.8vw;
  box-shadow: 0 0.5vw 1.5vw rgba(0, 0, 0, 0.2);
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.footer {
  background: #fff;
  padding: 3vw 5vw;
  font-family: Arial, sans-serif;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4vw;
}

.footer-col h3 {
  font-size: 1.1vw;
  margin-bottom: 1vw;
  font-weight: 700;
}

.footer-col p {
  font-size: 0.9vw;
  margin: 0.4vw 0;
  color: #111;
}

.footer-col a {
  color: red;
  text-decoration: none;
  font-size: 0.9vw;
}

.footer-phone {
  font-weight: bold;
}

.footer-socials a {
  margin-right: 1vw;
  font-size: 1.3vw;
  color: #111;
}

.footer-bottom {
  margin-top: 2vw;
  text-align: center;
  font-size: 0.9vw;
  color: #333;
}

.footer-bottom span {
  color: red;
  font-weight: bold;
}

.footer-bottom a {
  color: red;
  text-decoration: none;
  font-weight: bold;
}
.pk-shop-container {
  display: flex;
  gap: 4vw;
  padding: 2vw 5vw;
}

.pk-shop-sidebar {
  width: 20vw;
}

.pk-shop-search input {
  width: 100%;
  padding: 0.8vw;
  font-size: 1vw;
  border: 0.1vw solid #ccc;
  margin-bottom: 2vw;
}

.pk-shop-categories h3 {
  font-size: 1.2vw;
  margin-bottom: 1vw;
}

.pk-shop-categories ul {
  list-style: none;
  padding: 0;
}

.pk-shop-categories ul li {
  margin-bottom: 1vw;
}

.pk-shop-categories ul li a {
  color: red;
  text-decoration: none;
  font-size: 1vw;
}

.pk-shop-products {
  flex: 1;
}

.pk-shop-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2vw;
}

.pk-shop-header h1 {
  font-size: 2vw;
}

.pk-shop-sorting label {
  font-size: 1vw;
  margin-right: 0.5vw;
}

.pk-shop-sorting select {
  font-size: 1vw;
  padding: 0.5vw;
}

.pk-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16vw, 1fr));
  gap: 5vw;
}

.pk-product-card {
  text-align: center;
  border: 0.1vw solid #ddd;
  padding: 1.5vw;
  border-radius: 1vw;
}

.pk-product-card img {
  max-width: 100%;
  height: auto;
  margin-bottom: 1vw;
}

.pk-product-card h3 {
  font-size: 1vw;
  margin-bottom: 0.8vw;
}

.pk-product-card p {
  font-size: 1vw;
  font-weight: bold;
  margin: 0.5vw 0;
}

.pk-product-card button {
  font-size: 1vw;
  padding: 0.7vw 1.2vw;
  border: 0.1vw solid #000;
  background: transparent;
  cursor: pointer;
}
.arcade-game-gallery {
  padding: 4vw 11vw;
  text-align: center;
  background-color: #f5f5f5;
  margin-bottom: 4vw;
}

.arcade-game-title {
  font-size: 3vw;
  font-family: "Orbitron", sans-serif;
  margin-bottom: 1vw;
}

.arcade-game-subtitle {
  font-size: 1.2vw;
  margin-bottom: 3vw;
  color: #333;
}

.arcade-game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12vw, 1fr));
  gap: 2vw;
  justify-items: center;
}

.arcade-game-card {
  background: #fff;
  padding: 1.5vw;
  border-radius: 1vw;
  box-shadow: 0 0.3vw 1vw rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  text-align: center;
}

.arcade-game-card:hover {
  transform: translateY(-0.5vw);
}

.arcade-game-card img {
  width: 100%;
  height: auto;
  max-height: 12vw;
  object-fit: contain;
  margin-bottom: 1vw;
}

.arcade-game-card p {
  font-size: 1vw;
  font-weight: 600;
  font-family: "Orbitron", sans-serif;
}
.why-pinball-king {
  padding: 4vw 5vw;
  background-color: #f1f1f1;
  text-align: center;
  font-family: "Orbitron", sans-serif;
}

.why-pinball-king h2 {
  font-size: 3vw;
  margin-bottom: 2vw;
}

.why-pinball-king p {
  font-size: 1.2vw;
  max-width: 80vw;
  margin: 1.5vw auto;
  color: #333;
  line-height: 1.6;
}
.pinball-stock-section {
  max-width: 80vw;
  margin: 0 auto;
  display: flex;
  gap: 4vw;
  padding: 4vw 0;
  font-family: "Orbitron", sans-serif;
  align-items: flex-start;
  background-color: #fff;
}

.stock-left {
  width: 30vw;
  text-align: center;
}

.stock-left p {
  font-size: 1.1vw;
  margin-bottom: 2vw;
  color: #000;
}

.stock-left img {
  width: 100%;
  border-radius: 1vw;
  margin-bottom: 1vw;
}

.stock-left h3 {
  font-size: 1.6vw;
  margin-bottom: 1vw;
}

.stock-button {
  font-size: 1vw;
  padding: 0.8vw 2vw;
  border: 0.1vw solid #000;
  background: transparent;
  cursor: pointer;
  transition: background 0.3s ease;
}

.stock-button:hover {
  background: #000;
  color: #fff;
}

.stock-right {
  display: flex;
  gap: 4vw;
  width: 45vw;
}

.stock-column {
  width: 22vw;
}

.stock-column h3 {
  font-size: 1.5vw;
  margin-bottom: 1vw;
  color: #000;
}

.stock-column h4 {
  font-size: 1.2vw;
  margin-top: 2vw;
  margin-bottom: 1vw;
  color: #000;
}

.stock-column p {
  font-size: 1vw;
  margin-bottom: 0.8vw;
  color: #000;
}
.neo-hero-section {
  position: relative;
  width: 100%;
  height: 40vw;
  overflow: hidden;
}

.neo-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
}

.neo-hero-text {
  position: absolute;
  top: 50%;
  left: 5vw;
  transform: translateY(-50%);
  color: #ff0000;
  font-family: "Orbitron", sans-serif;
}

.neo-hero-title {
  font-size: 4vw;
  margin: 0;
}

.neo-hero-subtitle {
  font-size: 3vw;
  margin: 0;
}

.neo-content-section {
  padding: 4vw 6vw;
  background-color: #fff;
  font-family: "Orbitron", sans-serif;
  color: #000;
}

.neo-section-title {
  font-size: 2.4vw;
  margin-bottom: 2vw;
}

.neo-paragraph {
  font-size: 1.2vw;
  line-height: 1.6;
  margin-bottom: 1.5vw;
}
.billiard-cards {
  padding: 4vw 5vw;
  font-family: "Orbitron", sans-serif;
  background-color: #fff;
  text-align: center;
}

.billiard-title {
  font-size: 2vw;
  margin-bottom: 3vw;
  color: #000;
}

.billiard-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 4vw;
  justify-content: center;
}

.billiard-card {
  flex: 1 1 35vw;
  max-width: 40vw;
}

.billiard-img {
  width: 100%;
  border-radius: 1vw;
  margin-bottom: 1.2vw;
}

.billiard-name {
  font-size: 1.4vw;
  margin-bottom: 1vw;
  color: #000;
}

.billiard-button {
  display: inline-block;
  font-size: 1vw;
  padding: 0.8vw 2vw;
  border: 0.1vw solid #000;
  color: #000;
  text-decoration: none;
  transition: background 0.3s ease;
}

.billiard-button:hover {
  background: #000;
  color: #fff;
}
.services-banner {
  background-color: #111;
  color: #fff;
  padding: 5vw 2vw;
  text-align: center;
  font-family: "Orbitron", sans-serif;
}

.services-banner-content {
  max-width: 75vw;
  margin: 0 auto;
}

.services-banner-content h1 {
  font-size: 4vw;
  color: #e90000;
  margin-bottom: 2vw;
}

.services-banner-content p {
  font-size: 1.2vw;
  line-height: 1.6;
  color: #f0f0f0;
}

.services-title {
  text-align: center;
  font-family: "Orbitron", sans-serif;
  font-size: 1.6vw;
  margin: 5vw 0 2vw;
  color: #000;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 10vw;
  padding: 0 11vw 5vw;
}

.service-card {
  background: #fff;
  box-shadow: 0 0.5vw 1vw rgba(0, 0, 0, 0.1);
  text-align: center;
  padding-bottom: 1vw;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: scale(1.03);
}

.service-card img {
  width: 100%;
  display: block;
}

.service-card h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 1.2vw;
  margin-top: 1.2vw;
  color: #111;
}

/* Responsive */
@media (max-width: 768px) {
  .services-title {
    font-size: 4.5vw;
  }

  .service-card h3 {
    font-size: 4vw;
  }
}
.repair-header-banner {
  background: linear-gradient(90deg, #000000, #2c2c2c);
  padding: 4vw 2vw;
  text-align: center;
  color: #ffffff;
}

.repair-header-title {
  font-size: 3vw;
  margin: 0;
  color: #e60000;
}

.repair-header-subtitle {
  font-size: 1.5vw;
  margin: 1vw 0 0;
  color: #ffffff;
}

.repair-services-section {
  max-width: 64vw;
  margin: 4vw auto;
  padding: 0 2vw;
  display: flex;
  flex-direction: column;
  gap: 3vw;
}

.repair-service-block {
  background: #ffffff;
  border-radius: 1vw;
  box-shadow: 0 0.5vw 1vw rgba(0, 0, 0, 0.1);
  padding: 2vw;
}

.repair-service-title {
  font-size: 2vw;
  margin-bottom: 1vw;
  color: #222222;
}

.repair-service-description {
  font-size: 1.1vw;
  line-height: 1.6;
  color: #333333;
}
.blog-main-content {
  max-width: 80vw;
  margin: 5vw auto;
  padding: 2vw;
  background-color: #f9f9f9;
  font-family: "Arial", sans-serif;
}

.blog-section h2 {
  font-size: 2vw;
  text-align: center;
  margin-bottom: 3vw;
  color: #222;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 5vw;
}

.blog-grid .arcade-item {
  background-color: #ffffff;
  border-radius: 1vw;
  box-shadow: 0 0.3vw 1vw rgba(0, 0, 0, 0.1);
  padding: 1vw;
  text-align: center;
  transition: transform 0.3s;
}

.blog-grid .arcade-item:hover {
  transform: translateY(-0.5vw);
}

.blog-grid img {
  width: 100%;
  border-radius: 0.5vw;
  margin-bottom: 1vw;
}

.blog-grid h3 {
  font-size: 1.2vw;
  color: #333;
  margin-bottom: 1vw;
}

.blog-grid .read-more {
  background-color: #ff6600;
  color: white;
  border: none;
  padding: 0.5vw 1vw;
  font-size: 1vw;
  border-radius: 0.5vw;
  cursor: pointer;
  transition: background-color 0.3s;
}

.blog-grid .read-more:hover {
  background-color: #cc5200;
}
.arcade-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0.8vw;
}
/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  background-color: white;
}

/* ===============================================
   CARD1-PRODUCT - VW BASED RESPONSIVE STYLES
   =============================================== */

.card1-product {
  width: 100vw;
  max-width: 75vw;
  margin: 0 auto;
  padding: 1.5vw;
  background-color: white;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Breadcrumb navigation */
.card1-product .breadcrumb {
  margin-bottom: 1.5vw;
  font-size: 0.9vw;
  color: #666;
}

.card1-product .breadcrumb a {
  color: #666;
  text-decoration: none;
}

.card1-product .breadcrumb a:hover {
  color: #333;
}

.card1-product .breadcrumb span {
  margin: 0 0.3vw;
}

/* Product section */
.card1-product .product-section {
  display: flex;
  gap: 2vw;
  margin-bottom: 2vw;
}

/* Product images */
.card1-product .product-images {
  flex: 1;
  max-width: 35vw;
}

.card1-product .main-image {
  position: relative;
  margin-bottom: 1vw;
  border: 0.1vw solid #ddd;
  border-radius: 0.5vw;
  overflow: hidden;
}

.card1-product .main-image img {
  width: 100%;
  height: auto;
  display: block;
}

.card1-product .zoom-icon {
  position: absolute;
  top: 0.7vw;
  right: 0.7vw;
  background: rgba(255, 255, 255, 0.8);
  width: 2vw;
  height: 2vw;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1vw;
}

.card1-product .thumbnail-images {
  display: flex;
  gap: 0.7vw;
  flex-wrap: wrap;
}

.card1-product .thumbnail-images img {
  width: 4vw;
  height: 4vw;
  object-fit: cover;
  border: 0.15vw solid #ddd;
  border-radius: 0.3vw;
  cursor: pointer;
  transition: border-color 0.3s;
}

.card1-product .thumbnail-images img:hover,
.card1-product .thumbnail-images img.active {
  border-color: #007cba;
}

/* Product info */
.card1-product .product-info {
  flex: 1;
}

.card1-product .product-title {
  font-size: 2vw;
  font-weight: bold;
  margin-bottom: 1.5vw;
  color: #333;
  text-transform: uppercase;
}

.card1-product .product-price {
  font-size: 1.7vw;
  font-weight: bold;
  margin-bottom: 1vw;
  color: #333;
}

.card1-product .price {
  font-size: 2.3vw;
}

.card1-product .currency {
  font-size: 1.3vw;
  margin-left: 0.3vw;
}

.card1-product .product-availability {
  margin-bottom: 1.5vw;
}

.card1-product .availability-text {
  color: #666;
  font-size: 1vw;
}

.card1-product .product-category {
  display: flex;
  gap: 1.5vw;
  flex-wrap: wrap;
  font-size: 1vw;
}

.card1-product .category-link,
.card1-product .tag-link {
  color: #e74c3c;
  text-decoration: none;
}

.card1-product .category-link:hover,
.card1-product .tag-link:hover {
  text-decoration: underline;
}

/* Product tabs */
.card1-product .product-tabs {
  margin-bottom: 2vw;
}

.card1-product .tab-buttons {
  display: flex;
  border-bottom: 0.15vw solid #ddd;
  margin-bottom: 1.5vw;
}

.card1-product .tab-button {
  background: none;
  border: none;
  padding: 1vw 1.5vw;
  font-size: 1vw;
  font-weight: bold;
  cursor: pointer;
  color: #666;
  transition: color 0.3s, border-bottom 0.3s;
  border-bottom: 0.15vw solid transparent;
}

.card1-product .tab-button:hover {
  color: #333;
}

.card1-product .tab-button.active {
  color: #333;
  border-bottom-color: #333;
}

.card1-product .tab-content {
  min-height: 15vw;
}

.card1-product .tab-pane {
  display: none;
}

.card1-product .tab-pane.active {
  display: block;
}

/* Product description */
.card1-product .product-description {
  font-size: 1.1vw;
  line-height: 1.8;
}

.card1-product .features-list {
  list-style: none;
  padding: 0;
}

.card1-product .features-list li {
  padding: 0.6vw 0;
  border-bottom: 0.1vw solid #eee;
  position: relative;
  padding-left: 1.5vw;
}

.card1-product .features-list li:before {
  content: "•";
  color: #007cba;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.card1-product .features-list li:last-child {
  border-bottom: none;
}

/* Game list section */
.card1-product .game-list-section {
  text-align: center;
}

.card1-product .game-list-button {
  background-color: #e74c3c;
  color: white;
  border: none;
  padding: 1vw 3vw;
  font-size: 1.1vw;
  font-weight: bold;
  cursor: pointer;
  border-radius: 0.3vw;
  transition: background-color 0.3s;
  text-transform: uppercase;
}

.card1-product .game-list-button:hover {
  background-color: #c0392b;
}

/* Responsive adjustments for card1-product */
@media (max-width: 768px) {
  .card1-product {
    max-width: 95vw;
    padding: 3vw;
  }

  .card1-product .product-section {
    flex-direction: column;
    gap: 3vw;
  }

  .card1-product .product-images {
    max-width: 100%;
  }

  .card1-product .product-title {
    font-size: 4vw;
  }

  .card1-product .price {
    font-size: 5vw;
  }

  .card1-product .currency {
    font-size: 3vw;
  }

  .card1-product .breadcrumb {
    font-size: 2.5vw;
  }

  .card1-product .availability-text {
    font-size: 2.5vw;
  }

  .card1-product .product-category {
    font-size: 2.5vw;
    flex-direction: column;
    gap: 2vw;
  }

  .card1-product .tab-button {
    font-size: 2.5vw;
    padding: 2vw 3vw;
  }

  .card1-product .product-description {
    font-size: 2.8vw;
  }

  .card1-product .game-list-button {
    font-size: 3vw;
    padding: 2.5vw 6vw;
  }

  .card1-product .thumbnail-images img {
    width: 8vw;
    height: 8vw;
  }

  .card1-product .zoom-icon {
    width: 4vw;
    height: 4vw;
    font-size: 2vw;
  }
}

@media (max-width: 480px) {
  .card1-product {
    max-width: 98vw;
    padding: 4vw;
  }

  .card1-product .product-title {
    font-size: 5vw;
  }

  .card1-product .price {
    font-size: 6vw;
  }

  .card1-product .thumbnail-images img {
    width: 10vw;
    height: 10vw;
  }
}

.breadcrumb {
  margin-bottom: 20px;
  font-size: 14px;
  color: #666;
}

.breadcrumb a {
  color: #666;
  text-decoration: none;
}

.breadcrumb a:hover {
  color: #333;
}

.breadcrumb span {
  margin: 0 5px;
}

/* Product section */
.product-section {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}

/* Product images */
.product-images {
  flex: 1;
  max-width: 500px;
}

.main-image {
  position: relative;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
}

.main-image img {
  width: 100%;
  height: auto;
  display: block;
}

.zoom-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.8);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
}

.thumbnail-images {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.thumbnail-images img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border: 2px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
  transition: border-color 0.3s;
}

.thumbnail-images img:hover,
.thumbnail-images img.active {
  border-color: #007cba;
}

/* Product info */
.product-info {
  flex: 1;
}

.product-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
  text-transform: uppercase;
}

.product-price {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #333;
}

.price {
  font-size: 32px;
}

.currency {
  font-size: 18px;
  margin-left: 5px;
}

.product-availability {
  margin-bottom: 20px;
}

.availability-text {
  color: #666;
  font-size: 14px;
}

.product-category {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 14px;
}

.category-link,
.tag-link {
  color: #e74c3c;
  text-decoration: none;
}

.category-link:hover,
.tag-link:hover {
  text-decoration: underline;
}

/* Product tabs */
.product-tabs {
  margin-bottom: 30px;
}

.tab-buttons {
  display: flex;
  border-bottom: 2px solid #ddd;
  margin-bottom: 20px;
}

.tab-button {
  background: none;
  border: none;
  padding: 15px 20px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  color: #666;
  transition: color 0.3s, border-bottom 0.3s;
  border-bottom: 2px solid transparent;
}

.tab-button:hover {
  color: #333;
}

.tab-button.active {
  color: #333;
  border-bottom-color: #333;
}

.tab-content {
  min-height: 300px;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

/* Product description */
.product-description {
  font-size: 16px;
  line-height: 1.8;
}

.features-list {
  list-style: none;
  padding: 0;
}

.features-list li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  position: relative;
  padding-left: 20px;
}

.features-list li:before {
  content: "•";
  color: #007cba;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.features-list li:last-child {
  border-bottom: none;
}

/* Game list section */
.game-list-section {
  text-align: center;
}

.game-list-button {
  background-color: #e74c3c;
  color: white;
  border: none;
  padding: 15px 40px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s;
  text-transform: uppercase;
}

.game-list-button:hover {
  background-color: #c0392b;
}

/* Responsive design */
@media (max-width: 768px) {
  .product-section {
    flex-direction: column;
  }

  .product-title {
    font-size: 24px;
  }

  .price {
    font-size: 28px;
  }

  .tab-buttons {
    flex-direction: column;
  }

  .tab-button {
    text-align: left;
    border-bottom: 1px solid #ddd;
    border-right: none;
  }

  .tab-button.active {
    border-bottom-color: #ddd;
    border-left: 3px solid #333;
  }

  .product-category {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 10px;
  }

  .product-title {
    font-size: 20px;
  }

  .price {
    font-size: 24px;
  }

  .thumbnail-images img {
    width: 50px;
    height: 50px;
  }
}
.add-to-cart-button {
  padding: 1vw 2vw;
  background-color: #1a75ff;
  color: #fff;
  font-size: 1.2vw;
  border: none;
  border-radius: 0.5vw;
  cursor: pointer;
  margin-top: 2vw;
  transition: background-color 0.3s ease;
}

.add-to-cart-button:hover {
  background-color: #0044cc;
}

.product-actions {
  margin-top: 2vw;
}
.article-container {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}
.article-container h1 {
  font-size: 32px;
  color: #1a1a1a;
  margin-bottom: 20px;
}
.article-container h2 {
  font-size: 24px;
  color: #333;
  margin-top: 30px;
  margin-bottom: 15px;
}
.article-container p {
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 16px;
}
.article-container ul {
  margin-bottom: 15px;
  padding-left: 20px;
}
.article-container ul li {
  margin-bottom: 10px;
}
footer {
  background-color: #1a1a1a;
  color: #fff;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    align-items: flex-start;
  }
  nav ul {
    flex-direction: column;
    gap: 10px;
  }
  nav ul li ul {
    position: static;
    background-color: #333;
  }
  .article-container {
    margin: 20px;
    padding: 15px;
  }
}
.logo-image {
  height: 6vw;
  width: auto;
  max-width: 12vw;
  display: block;
}
.cart-page {
  padding: 4vw 6vw;
  background-color: #f5f5f5;
  font-family: Arial, sans-serif;
}

.cart-title {
  font-size: 2.5vw;
  margin-bottom: 2vw;
  color: #222;
}

.cart-container {
  background-color: #fff;
  border-radius: 1vw;
  padding: 2vw;
  box-shadow: 0 0.3vw 1vw rgba(0, 0, 0, 0.1);
}

.cart-item {
  display: flex;
  gap: 2vw;
  align-items: center;
  border-bottom: 0.1vw solid #ddd;
  padding-bottom: 2vw;
  margin-bottom: 2vw;
}

.cart-item-image {
  width: 12vw;
  border-radius: 1vw;
}

.cart-item-details {
  flex: 1;
}

.cart-item-title {
  font-size: 1.6vw;
  margin-bottom: 0.5vw;
}

.cart-item-price {
  font-size: 1.4vw;
  color: #cc0000;
}

.cart-item-qty {
  font-size: 1.2vw;
}

.cart-total {
  text-align: right;
  font-size: 1.5vw;
}

.checkout-button {
  padding: 1vw 2vw;
  font-size: 1.2vw;
  background-color: #ff6600;
  color: white;
  border: none;
  border-radius: 0.5vw;
  cursor: pointer;
  margin-top: 1vw;
}
.banner {
  background-color: #1a1a1a;
  color: #ffffff;
  text-align: center;
  padding: 2vw;
  font-family: 'Orbitron', sans-serif;
}
.banner h1 {
  font-size: 4vw;
  color: #e90000;
  margin-bottom: 1vw;
}
.banner p {
  font-size: 1.2vw;
  max-width: 80vw;
  margin: 0 auto;
}
.delivery-info {
  font-size: 1.1vw;
  color: #e90000;
  margin-top: 1vw;
}

.checkout-button:hover {
  background-color: #e65100;
}
.add-to-cart-btn {
  background-color: #ff6600;
  color: #fff;
  padding: 0.8vw 2vw;
  font-size: 1.2vw;
  border: none;
  border-radius: 0.5vw;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-weight: bold;
  margin-top: 1vw;
}

.add-to-cart-btn:hover {
  background-color: #e65500;
  transform: scale(1.05);
}
.billiard-banner {
  background-color: #111;
  color: #fff;
  padding: 4vw 2vw;
  text-align: center;
  font-family: 'Orbitron', sans-serif;
}

.billiard-banner h1 {
  color: #e90000;
  font-size: 4vw;
  margin-bottom: 2vw;
}

.billiard-banner p {
  font-size: 1.2vw;
  max-width: 75vw;
  margin: 0 auto 1.5vw;
  line-height: 1.6;
}

.billiard-banner p span {
  color: #e90000;
  font-weight: bold;
}
.pinball-banner {
  background-color: #111;
  color: #fff;
  padding: 4vw 2vw;
  text-align: center;
  font-family: 'Orbitron', sans-serif;
}

.pinball-banner h1 {
  color: #e90000;
  font-size: 4vw;
  margin-bottom: 2vw;
}

.pinball-banner p {
  font-size: 1.2vw;
  max-width: 75vw;
  margin: 0 auto 1.5vw;
  line-height: 1.6;
}

.pinball-banner p span {
  color: #e90000;
  font-weight: bold;
}
@media (max-width: 768px) {

  .logo-image {
    height: 15vw;
    width: auto;
    max-width: 22vw;
    display: block;
  }
  .comment-form-wrapper {
    max-width: 90vw;
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 3vw;
    flex-direction: column;
  }
  .comment-form-section {
    font-size: 5vw; /* Для десктопу залишиться менший розмір */
    flex-direction: row;
    text-align: left;
  }
  .product-card {
    width: 85vw;
    padding: 1.5vw;
    text-align: center;
  }
  
  .product-card h3 {
    font-size: 4.5vw;
    margin-bottom: 1vw;
  }
  
  .product-card p {
    font-size: 3.8vw;
    margin-bottom: 2vw;
  }
  
  .product-card button {
    font-size: 3.5vw;
    padding: 1.5vw 3vw;
  }
.footer-columns {
  flex-direction: column;
  align-items: center;
  gap: 2vw;
  padding: 4vw 0;
}

.footer-columns p,
.footer-columns a,
.footer-columns li,
.footer-columns h3 {
  font-size: 4vw;
  text-align: center;
}
}
/* Мобільні стилі */
@media (max-width: 768px) {
  .nav-container {
    flex-direction: row;
    padding: 1.5vw 0;
  }
  .banner h1 {
    font-size: 6vw;
  }
  .logo {
    font-size: 4vw;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    padding: 1.5vw 0;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-link {
    font-size: 4.5vw;
    padding: 1.5vw;
    text-align: center;
    display: flex;
    justify-content: center;
  }

  .dropdown {
    position: static;
    width: 100%;
    box-shadow: none;
    background: transparent;
  }

  .dropdown-item {
    font-size: 2vw;
    padding: 1vw;
  }

  .nav-actions {
    flex-direction: row;
    gap: 1vw;
    width: 100%;
    justify-content: center;
  }

  .phone-number {
    font-size: 4vw;
    padding: 1vw;
    width: 59%;
    text-align: center;
  }

  .cart-icon {
    font-size: 5.5vw;
    padding: 1vw;
  }

  .cart-count {
    width: 4.5vw;
    height: 4.5vw;
    font-size: 4.2vw;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .video-background {
    height: 60vw;
  }

  .video-overlay-text h1 {
    font-size: 6vw;
  }

  .video-overlay-text p {
    font-size: 3vw;
  }

  .arcade-section h2 {
    font-size: 4vw;
  }

  .arcade-item {
    width: 40vw;
  }

  .arcade-item h3 {
    font-size: 2.5vw;
  }

  .price {
    font-size: 5vw;
  }
  .pinball-remember-text {
    font-size: 3.6vw;
    margin: 3.5vw auto;

  }
 
.billiard-banner h1 {
  font-size: 7vw;
}
}
/* Адаптація SHOP для мобільних */
@media screen and (max-width: 768px) {
  .pk-shop-container {
    flex-direction: column;
    padding: 2vw;
  }

  .pk-shop-sidebar {
    font-size: 4.5vw; /* Збільшено для мобільних */
  }

  .pk-shop-categories ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2vw;
    padding: 0;
    font-size: 4vw;
  }
  .pk-shop-categories ul li a {
    font-size: 2vw;
}
  .pk-shop-categories li {
    font-size: 1.1vw;
  }

  .pk-shop-products {
    width: 100%;
  }

  .pk-shop-header {
    flex-direction: column;
    gap: 2vw;
    text-align: center;
  }

  .pk-product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5vw;
  }

  .pk-product-card {
    padding: 4vw;
    border: 1px solid #ccc;
    border-radius: 1vw;
    text-align: center;
  }

  .pk-product-card h3 {
    font-size: 4.5vw;
    margin: 2vw 0;
  }

  .pk-product-card p {
    font-size: 4vw;
    margin-bottom: 2vw;
  }

  .pk-product-card button {
    padding: 2vw 4vw;
    font-size: 4vw;
    background-color: #ff6600;
    color: white;
    border: none;
    border-radius: 1vw;
    cursor: pointer;
  }

  .pk-shop-search input {
    width: 80%;
    font-size: 4vw;
    padding: 1.5vw;
    margin: 0 auto 4vw auto;
    display: block;
  }

  .pk-shop-sorting label,
  .pk-shop-sorting select {
    font-size: 3vw;
  }

  .pk-shop-sorting select {
    padding: 1vw;
  }

  .footer-columns {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0vw;
  }

  .footer-col h3 {
    font-size: 4.5vw;
  }

  .footer-col p,
  .footer-col a {
    font-size: 4vw;
  }
  .repair-header-title {
    font-size: 5vw;
  }
  .repair-header-subtitle {
    font-size: 3.5vw;;
  }
  .services-banner-content h1 {
    font-size: 6vw
  }
  .services-banner-content p {
    font-size: 3.2vw;
  }
  .repair-services-section {
    max-width: 91vw;
    margin: 3vw auto;
    display: flex;
    flex-direction: column;
    gap: 2vw;
  }
  .repair-service-description {
    font-size: 2vw;
  }
  .repair-service-title {
      font-size: 4vw;
  }

.banner p {
  font-size: 2.2vw;

}
.arcade-game-title {
  font-size: 4vw;
}
.arcade-game-subtitle {
  font-size: 3.2vw;
}
.arcade-game-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 5vw;
}
.arcade-game-card p {
  font-size: 4vw;
}
.arcade-game-card {
  background: #fff;
  padding: 6.5vw
}

.pinball-banner h1 {
  font-size: 6vw;
}
.pinball-banner p {
  font-size: 2.2vw;
  
}

.pinball-stock-section {
  display: flex;
  flex-direction: column;
  padding: 4vw;
  gap: 4vw;
}

.pinball-stock-section img {
  width: 100%;
  height: auto;
}

.stock-left,
.stock-right {
  width: 100%;
}

.stock-left p,
.stock-right p,
.stock-right h3,
.stock-right h4 {
  font-size: 2.5vw;
  line-height: 1.6;
}

.stock-button {
  padding: 2vw 5vw;
  font-size: 4vw;
  margin-top: 3vw;
}

.other-products-title,
.why-pinball-king h2 {
  font-size: 6vw;
  text-align: center;
}

.other-products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4vw;
  padding: 4vw;
}

.product-card {
  padding: 4vw;
  text-align: center;
}

.product-card h3 {
  font-size: 5vw;
}

.product-card p {
  font-size: 4vw;
}

.why-pinball-king p {
  font-size: 4vw;
  padding: 0 4vw;
}

.comment-form-section {
  padding: 5vw;
}

.form-row label,
.form-row input,
.form-row textarea {
  font-size: 2vw;
}

.billiard-banner p {
  font-size: 2.2vw;
}
.billiard-cards {
  padding: 7vw 7vw;
 
}
.billiard-title {
  font-size: 4vw;
}
.billiard-name {
  font-size: 3.4vw;
}
.billiard-button {
  font-size: 2.2vw;
}
.blog-grid {
  display: flex;
  flex-direction: column;
  gap: 5vw;
  padding: 0vw;
}

.arcade-item {
  width: 100%;
  box-shadow: 0 0.8vw 2vw rgba(0, 0, 0, 0.1);
  border-radius: 2vw;
  overflow: hidden;
  text-align: center;
  background-color: #fff;
  padding: 4vw;
}

.arcade-img {
  width: 100%;
  height: auto;
  border-radius: 1.5vw;
}

.arcade-item h3 {
  font-size: 4.5vw;
  margin-top: 3vw;
  color: #222;
}

.read-more {
  font-size: 4vw;
  padding: 3vw 6vw;
  margin-top: 4vw;
  background-color: #ff6600;
  color: #fff;
  border: none;
  border-radius: 1.5vw;
  cursor: pointer;
}

.blog-grid .read-more {
  padding: 1.5vw 4vw;
  font-size: 3vw;
  border-radius: 2.5vw;
}
.blog-section h2 {
  font-size: 6vw;
}
.review-card p {
  font-size: 2vw;
  line-height: 1.4;
}
.review-slider-container {
  gap: 4vw;
}
.review-info h4 {
  font-size: 2vw;
}
.review-info .review-date {
  font-size: 2.8vw;
}
.review-card {  
  padding: 0.5vw;
  min-width: 29vw;
  max-width: 23vw;
}
.comment-contact-info p {
  font-size: 2.9vw;
}
.dropdown {
  display: none;
  flex-direction: column;
  padding-left: 4vw;
}

.nav-item.open .dropdown {
  display: flex;
}

.nav-item.has-submenu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

}
