@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@500&display=swap");
body {
  margin: 0;
  padding: 0;
  background-color: #000;
  color: #fff;
  font-family: "Orbitron", sans-serif;
  font-size: 1vw;
  overflow-x: hidden;
}
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: #111;
}
::-webkit-scrollbar-thumb {
  background-color: #f03818;
  border-radius: 10px;
  transition: background-color 0.3s ease;
}
::-webkit-scrollbar-thumb:hover {
  background-color: #ff4c30;
}
* {
  scrollbar-width: thin;
  scrollbar-color: #f03818 #111;
}
.game-zone-header {
  background-color: #000;
  padding: 0.2vw 2vw;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #222;
}
.game-zone-container {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1600px;
  gap: 2vw;
}
.game-zone-logo {
  height: 5vw;
  width: auto;
  filter: invert(1);
}
.game-zone-title-block {
  display: flex;
  flex-direction: column;
}
.game-zone-title {
  font-size: 1.8vw;
  font-weight: 700;
  color: #fff;
  transition: all 0.4s ease;
  margin-bottom: 0.3vw;
  cursor: default;
}
.game-zone-title:hover {
  background: linear-gradient(to right, red 0%, white 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.game-zone-subtitle {
  font-size: 0.8vw;
  color: #aaa;
  margin-top: 0.2vw;
}
.game-zone-nav {
  margin-left: auto;
}
.game-zone-nav-list {
  display: flex;
  list-style: none;
  gap: 1vw;
  margin: 0;
  padding: 0;
}
.game-zone-nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 2vw;
  height: 5vw;
  text-align: center;
  padding: 0 1vw;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  background-color: transparent;
  border-radius: 0.3vw;
}
.game-zone-nav-link:hover {
  background-color: #ffffff;
  color: #000000;
}
.game-zone-nav-link.active {
  background-color: #fff;
  color: #000;
  font-weight: bold;
}
.game-zone-contact-wrapper {
  position: relative;
}
.game-zone-burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 2.5vw;
  height: 2vw;
  cursor: pointer;
  z-index: 1001;
  margin-left: auto;
}
.game-zone-burger span {
  display: block;
  height: 0.3vw;
  background: white;
  border-radius: 1vw;
  transition: all 0.3s ease;
}
.game-zone-toggle-checkbox {
  display: none;
}
.game-zone-contact-dropdown {
  position: absolute;
  top: 5vw;
  left: -7vw;
  background-color: #111;
  border: 1px solid #333;
  padding: 0.6vw 1vw;
  z-index: 99;
  flex-direction: column;
  gap: 0.5vw;
  min-width: 12vw;
  display: flex;
  opacity: 0;
  transform: translateY(10%);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.game-zone-contact-wrapper:hover .game-zone-contact-dropdown {
  opacity: 1;
  transform: translateY(0%);
  pointer-events: auto;
}
.game-zone-subcontact {
  color: #ccc;
  text-decoration: none;
  font-size: 0.8vw;
  padding: 0.3vw 0;
  display: block;
  transition: color 0.3s ease;
}
.game-zone-subcontact:hover {
  color: #fff;
}
.game-zone-contact-wrapper:hover .game-zone-contact-dropdown {
  display: flex;
}
.game-zone-restauracion-block {
  position: relative;
  background: url("img/download.jpg") center center / cover no-repeat;
  padding: 5vw 2vw;
  overflow: hidden;
  color: #fff;
}
.game-zone-restauracion-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(6px);
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.game-zone-restauracion-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2vw;
  flex-wrap: wrap;
  max-width: 90vw;
  margin: 0 auto;
}
.game-zone-restauracion-text {
  max-width: 45%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.game-zone-restauracion-title {
  font-size: 2.5vw;
  margin-bottom: 0.5vw;
}
.game-zone-restauracion-subtitle {
  font-size: 1.4vw;
  margin-bottom: 0.8vw;
  color: #ccc;
}
.game-zone-restauracion-desc {
  font-size: 1vw;
  line-height: 1.6;
  margin-bottom: 1.5vw;
  color: #ddd;
}
.game-zone-restauracion-button {
  display: inline-block;
  padding: 0.7vw 1.5vw;
  background-color: #fff;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 0.3vw;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.game-zone-restauracion-button:hover {
  background-color: #ff0000;
  color: #fff;
  transform: scale(1.05);
}
.game-zone-restauracion-slider {
  position: relative;
  width: 40%;
  height: 25vw;
  overflow: hidden;
  background-color: #00000000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.game-zone-slider-img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}
.game-zone-slider-img.active {
  opacity: 1;
  z-index: 2;
}
.game-zone-restauracion-text > * {
  transition: opacity 0.6s ease;
  opacity: 1;
}
.game-zone-text-fade-out {
  opacity: 0 !important;
}
.game-zone-cards-section {
  padding: 5vw 2vw;
  background-color: #fff;
}
.game-zone-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2vw;
  max-width: 1400px;
  margin: 0 auto;
}
.game-zone-card {
  background-color: #f7f7f7;
  border: 2px solid red;
  padding: 2vw 1.5vw;
  text-align: center;
  font-family: "Segoe UI", sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.game-zone-card:hover {
  transform: translateY(-0.5vw);
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.15);
}
.game-zone-card-icon {
  width: 80px;
  height: auto;
  margin: 0 auto 1.2vw;
  margin-bottom: -1vw;
}
.game-zone-card-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #7a7a7a;
  margin-bottom: -1vw;
}
.game-zone-card-desc {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 2vw;
}
.game-zone-card-button {
  display: inline-block;
  background-color: #f13300;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  padding: 0.8vw 1.8vw;
  border-radius: 10px;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}
.game-zone-card-button:hover {
  background-color: #d72a00;
}
.gamezone-footer {
  background-color: #0b0b0b;
  color: #fff;
  padding: 2vw 3vw;
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3vw;
}
.footer-map {
  flex: 1 1 45%;
}
.footer-map iframe {
  width: 100%;
  height: 240px;
  border: 2px solid #f03818;
  border-radius: 8px;
}
.footer-contact {
  flex: 1 1 45%;
  display: flex;
  align-items: center;
}
.footer-contact-block p {
  margin: 0.4rem 0;
  color: #ddd;
}
.footer-contact-block a {
  color: #f03818;
  text-decoration: none;
}
.footer-divider {
  border-top: 1px solid #333;
  margin: 2vw 0;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 2vw;
}
.footer-links {
  flex: 1 1 60%;
  color: #ccc;
}
.footer-links a {
  position: relative;
  color: #d3d3d3;
  margin: 0 0.8vw;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}
.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-color: #f03818;
  transition: width 0.3s ease;
}
.footer-links a:hover {
  color: #f03818;
}
.footer-links a:hover::after {
  width: 100%;
}
.footer-social {
  flex-shrink: 0;
  display: flex;
  gap: 1vw;
}
.footer-social img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
  transition: transform 0.2s ease;
}
.footer-social img:hover {
  transform: scale(1.1);
  filter: brightness(0) invert(46%) sepia(89%) saturate(6820%) hue-rotate(2deg);
}
.footer-copy {
  margin-top: 2vw;
  font-size: 0.7vw;
  color: #888;
  margin-left: 0.6vw;
  margin-bottom: -0.2vw;
}
.cookie-links li a {
  font-size: 1vw;
  color: #f03818;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.2s ease;
}
.cookie-links li a:hover {
  color: #111;
  text-decoration: none;
}
.garantia-section {
  display: flex;
  gap: 3vw;
  padding: 0 0;
  padding-left: 8vw;
  background: #f7f7f7;
  font-family: "Montserrat", sans-serif;
  color: #151515;
}
.garantia-main {
  width: 80%;
}
.garantia-main h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.5vw;
  margin-bottom: 1vw;
  color: #111;
  text-align: left;
}
.garantia-main p {
  font-size: 1vw;
  margin-bottom: 1.2vw;
  line-height: 1.7;
}
.garantia-block {
  border-top: 2px solid #f03818;
  padding-top: 2vw;
  margin-top: 2.5vw;
}
.garantia-block h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.8vw;
  color: #000000;
  margin-bottom: 1vw;
}
.garantia-block img {
  max-width: 8vw;
  margin: 0 auto 1vw auto;
  display: block;
}
.garantiablock img {
  max-width: 20vw;
  display: block;
}
.highlight {
  color: #f03818;
  font-weight: bold;
}
.garantia-sidebar {
  width: 20%;
  background: #ffffff;
  padding: 3vw 2vw;
  border-left: 3px solid #f03818;
  font-size: 0.95vw;
}
.sidebar-logo {
  width: 100%;
  max-width: 20vw;
  margin-bottom: 1.5vw;
}
.sidebar-contact p,
.sidebar-contact a {
  margin: 0.5vw 0;
  color: #111;
  font-size: 0.95vw;
  text-decoration: none;
}
.sidebar-contact a:hover {
  text-decoration: underline;
  color: #f03818;
}
.sidebar-social {
  margin-top: 2vw;
}
.sidebar-social img {
  width: 2vw;
  margin-right: 1vw;
  transition: transform 0.3s ease;
}
.sidebar-social img:hover {
  transform: scale(1.1);
}
.repair-section {
  max-width: 80vw;
  margin: 0 auto;
  padding: 5vw 0;
  font-family: "Montserrat", sans-serif;
  color: #e3e3e3;
}
.repair-block {
  display: flex;
  align-items: flex-start;
  gap: 4vw;
  margin-bottom: 1vw;
  border-bottom: 1px solid #f03818;
  padding-bottom: 4vw;
}
.repair-block img {
  max-width: 22vw;
  height: auto;
  margin-top: 1vw;
}
.repair-content {
  flex: 1;
}
.repair-title {
  font-size: 1.6vw;
  font-weight: 700;
  margin-bottom: 1vw;
  color: #f03818;
  text-transform: uppercase;
}
.repair-description {
  font-size: 0.95vw;
  line-height: 1.6;
  margin-bottom: 1.5vw;
  color: #d0d0d0;
}
.repair-options {
  margin-bottom: 1.5vw;
}
.repair-option-title {
  font-size: 1.1vw;
  font-weight: 600;
  margin-bottom: 0.5vw;
  color: #ffffff;
}
.repair-option-text {
  font-size: 0.9vw;
  margin-bottom: 0.8vw;
  color: #bbb;
}
.repair-button {
  display: inline-block;
  background: #f03818;
  color: #fff;
  padding: 0.6vw 1.5vw;
  font-size: 0.9vw;
  font-weight: 600;
  border-radius: 0.4vw;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}
.repair-button:hover {
  background: #cc2e10;
  transform: translateY(-0.2vw);
}
.garantia-products {
  padding: 3vw 8vw;
  background: #f7f7f7;
  font-family: "Montserrat", sans-serif;
  color: #151515;
}
.garantia-products h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.5vw;
  margin-bottom: 2vw;
  color: #111;
}
.garantia-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18vw, 1fr));
  gap: 2vw;
}
.garantia-product-card {
  background: #ffffff;
  border: 1px solid #ddd;
  border-top: 4px solid #f03818;
  padding: 1.5vw;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.garantia-product-card:hover {
  transform: translateY(-0.4vw);
  box-shadow: 0 0.6vw 1.2vw rgba(0, 0, 0, 0.15);
}
.garantia-product-card img {
  max-width: 100%;
  height: auto;
  margin-bottom: -1vw;
}
.garantia-product-card h3 {
  font-size: 1.2vw;
  margin: 1.5vw 0;
  font-weight: 600;
}
.garantia-product-card p {
  font-size: 0.95vw;
  color: #333;
  margin-bottom: 1vw;
}
.price {
  display: inline-block;
  font-size: 1.4vw;
  font-weight: bold;
  color: #f03818;
}
.garantia-product-grid a {
  text-decoration: none;
  color: inherit;
}
.garantia-product-detail {
  padding: 4vw 8vw;
  font-family: "Montserrat", sans-serif;
  color: #151515;
  background: #f7f7f7;
}
.garantia-product-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 3vw;
  align-items: flex-start;
}
.garantia-product-image img {
  max-width: 30vw;
}
.garantia-product-info {
  flex: 1;
  min-width: 300px;
}
.garantia-product-info h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.5vw;
  margin-bottom: 1vw;
  color: #000;
}
.garantia-product-description {
  font-size: 1.1vw;
  margin-bottom: 1.2vw;
  line-height: 1.6;
}
.garantia-product-specs {
  margin-bottom: 2vw;
  font-size: 1vw;
  list-style: none;
  padding: 0;
}
.garantia-product-specs li {
  margin-bottom: 0.5vw;
}
.garantia-product-purchase {
  display: flex;
  align-items: center;
  gap: 1vw;
  flex-wrap: wrap;
}
.garantia-product-price {
  font-size: 1.8vw;
  color: #f03818;
  font-weight: bold;
}
.garantia-product-quantity {
  width: 5vw;
  padding: 0.5vw;
  font-size: 1vw;
}
.garantia-add-to-cart {
  background-color: #f03818;
  color: #fff;
  padding: 0.8vw 2vw;
  font-size: 1vw;
  border: none;
  border-radius: 0.5vw;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.garantia-add-to-cart:hover {
  background-color: #c32c12;
}
.garantia-cart-widget {
  position: fixed;
  top: 43vw;
  right: 2vw;
  background: #f03818;
  color: #fff;
  padding: 0.5vw 1vw;
  border-radius: 0.5vw;
  font-weight: bold;
  z-index: 999;
  box-shadow: 0 0 0.5vw rgba(0, 0, 0, 0.2);
}
.garantia-cart-widget a {
  color: #fff;
  text-decoration: none;
}
.cart-icon {
  position: fixed;
  top: 43vw;
  right: 2vw;
  background-color: #f03818;
  color: white;
  padding: 0.5vw 1vw;
  border-radius: 2vw;
  font-size: 1.1vw;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 0 0.6vw rgba(0, 0, 0, 0.2);
  z-index: 999;
  transition: background-color 0.2s ease;
}
.cart-icon:hover {
  background-color: #d93016;
}
#cart-count {
  background: white;
  color: #f03818;
  border-radius: 50%;
  padding: 0.2vw 0.5vw;
  margin-left: 0.5vw;
  font-size: 0.9vw;
  vertical-align: middle;
}
#cart-page {
  padding: 3vw;
  font-family: "Segoe UI", sans-serif;
  background-color: #f9f9f9;
}
#cart-page h2 {
  font-size: 2rem;
  margin-bottom: 2vw;
  color: #2c3e50;
  border-bottom: 2px solid #ccc;
  padding-bottom: 0.5vw;
}
.cart-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2vw;
  justify-content: flex-start;
}
.cart-item {
  background: white;
  border: 1px solid #ddd;
  border-radius: 0.8vw;
  padding: 1.5vw;
  width: 280px;
  box-shadow: 0 0.4vw 0.8vw rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cart-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5vw;
  color: #34495e;
}
.cart-item p {
  margin: 0.3vw 0;
  font-size: 0.95rem;
  color: #555;
}
.cart-item .remove-btn {
  background-color: #e74c3c;
  color: white;
  border: none;
  padding: 0.5vw 1vw;
  font-size: 0.9rem;
  border-radius: 0.4vw;
  cursor: pointer;
  margin-top: 1vw;
  align-self: flex-start;
  transition: background 0.2s;
}
.cart-item .remove-btn:hover {
  background-color: #c0392b;
}
#cart-total {
  margin-top: 3vw;
  font-size: 1.4rem;
  font-weight: bold;
  color: #2c3e50;
}
#checkout-btn {
  margin-top: 1vw;
  padding: 0.8vw 2vw;
  background-color: #2ecc71;
  color: white;
  font-size: 1rem;
  border: none;
  border-radius: 0.5vw;
  cursor: pointer;
  transition: background 0.2s;
}
#checkout-btn:hover {
  background-color: #27ae60;
}
.empty-cart-message {
  text-align: center;
  font-size: 1.4vw;
  color: #444;
  padding: 0 1vw;
  margin-top: 2vw;
}
.garantia-contact-section {
  background-color: #f9f9f9;
  padding: 4vw 2vw;
  text-align: center;
}
.garantia-contact-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 3vw;
  color: #000;
  border-radius: 1vw;
  box-shadow: 0 0.4vw 1.2vw rgba(0, 0, 0, 0.1);
}
.garantia-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2vw;
  margin-top: 2vw;
}
.garantia-contact-form label {
  font-weight: bold;
  text-align: left;
}
.garantia-contact-form input,
.garantia-contact-form textarea {
  padding: 1vw;
  font-size: 1vw;
  border: 1px solid #ccc;
  border-radius: 0.5vw;
  resize: vertical;
}
.garantia-contact-btn {
  background-color: #000000;
  color: #fff;
  border: none;
  padding: 1vw 2vw;
  font-size: 1vw;
  border-radius: 0.5vw;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.garantia-contact-btn:hover {
  background-color: #f03818;
}
.thankyou-container {
  max-width: 700px;
  margin: 5vh auto;
  background: #000000;
  padding: 4vw;
  border-radius: 1vw;
  box-shadow: 0 0.5vw 1.5vw rgba(0, 0, 0, 0.1);
  text-align: center;
}
.thankyou-container h1 {
  font-size: 2.5vw;
  color: #f03818;
}
.thankyou-container p {
  font-size: 1.2vw;
  margin-top: 1vw;
  line-height: 1.6;
}
.thankyou-btn {
  margin-top: 2vw;
  display: inline-block;
  background-color: #ffffff;
  color: #000000;
  padding: 1vw 2vw;
  border-radius: 0.5vw;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}
.thankyou-btn:hover {
  background-color: #f03818;
}
.game-zone-blog-section {
  padding: 2vw 4vw;
  background-color: #f8f8f8;
}
.game-zone-section-title {
  font-size: 2.5vw;
  text-align: center;
  margin-bottom: 3vw;
  color: #333;
  font-weight: bold;
}
.game-zone-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25vw, 1fr));
  gap: 2vw;
}
.game-zone-blog-card {
  background-color: #fff;
  border-radius: 1vw;
  box-shadow: 0 0.5vw 1vw rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.game-zone-blog-title {
  font-size: 1.5vw;
  margin: 1vw;
  color: #111;
}
.game-zone-blog-summary {
  font-size: 1vw;
  margin: 0 1vw 1vw;
  color: #444;
  flex-grow: 1;
}
.game-zone-blog-btn {
  display: inline-block;
  margin: 1vw;
  padding: 0.8vw 1.5vw;
  background-color: #ff0000;
  color: #fff;
  text-decoration: none;
  border-radius: 0.5vw;
  transition: background-color 0.3s ease;
  font-size: 1vw;
  text-align: center;
}
.game-zone-blog-btn:hover {
  background-color: #d50000;
}
.game-zone-blog-about-section {
  padding: 4vw;
  background-color: #fefefe;
  font-family: Arial, sans-serif;
  color: #222;
}
.game-zone-blog-about-container {
  max-width: 90vw;
  margin: 0 auto;
}
.game-zone-blog-about-title {
  font-size: 3.2vw;
  text-align: center;
  font-weight: bold;
  color: #111;
  margin-bottom: 1vw;
}
.game-zone-blog-about-subtitle {
  font-size: 1.6vw;
  text-align: center;
  color: #555;
  margin-bottom: 3vw;
}
.game-zone-blog-about-container h2 {
  font-size: 2.2vw;
  margin-top: 3vw;
  margin-bottom: 1.5vw;
  color: #333;
}
.game-zone-blog-about-container p {
  font-size: 1.3vw;
  margin-bottom: 2vw;
  line-height: 1.6;
}
.game-zone-blog-about-container ul {
  padding-left: 3vw;
  margin-bottom: 2.5vw;
}
.game-zone-blog-about-container li {
  font-size: 1.3vw;
  margin-bottom: 1vw;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .game-zone-burger {
    display: flex;
  }
  .game-zone-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70vw;
    height: 100vh;
    background-color: #000;
    transition: right 0.3s ease;
    z-index: 1000;
    padding-top: 6vw;
  }
  .game-zone-toggle-checkbox:checked ~ .game-zone-nav {
    right: 0;
  }
  .game-zone-nav-list {
    flex-direction: column;
    gap: 4vw;
    padding: 4vw;
  }
  .game-zone-nav-link {
    width: 100%;
    height: auto;
    justify-content: flex-start;
    font-size: 4vw;
    padding: 2vw;
  }
  .game-zone-contact-dropdown {
    position: static;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
    background-color: transparent;
    border: none;
    padding: 1vw 0 0 2vw;
    display: flex;
  }
  .game-zone-subcontact {
    font-size: 3.2vw;
    padding: 1vw 0;
  }
  .game-zone-header {
    flex-wrap: wrap;
  }
  .game-zone-container {
    flex-wrap: wrap;
    gap: 2vw;
  }
  .game-zone-title-block {
    flex: 1 1 100%;
    text-align: left;
    margin-top: 2vw;
  }
  .game-zone-container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    width: 100%;
  }
  .game-zone-logo-link {
    grid-column: 1;
    justify-self: start;
  }
  .game-zone-title-block {
    grid-column: 2;
    text-align: center;
    justify-self: center;
  }
  .game-zone-burger {
    grid-column: 3;
    width: 6vw;
    justify-self: end;
    height: 5vw;
  }
  .game-zone-logo {
    height: 6vw;
  }
  .game-zone-title {
    font-size: 4.2vw;
  }
  .game-zone-subtitle {
    font-size: 2.2vw;
  }
  .game-zone-burger span {
    display: block;
    height: 1vw;
    background: white;
    border-radius: 1vw;
    transition: all 0.3s ease;
  }
  .game-zone-restauracion-block {
    position: relative;
    background: url(img/download.jpg) center center / cover no-repeat;
    padding: 5vw 0;
    overflow: hidden;
    color: #fff;
  }
  .game-zone-restauracion-title {
    font-size: 5.5vw;
    margin-bottom: -2.5vw;
  }
  .game-zone-restauracion-subtitle {
    font-size: 4.4vw;
    margin-bottom: 0.8vw;
    color: #ccc;
  }
  .game-zone-restauracion-desc {
    font-size: 3vw;
    line-height: 1.6;
    margin-bottom: 1.5vw;
    color: #ddd;
  }
  .game-zone-restauracion-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2vw;
    flex-direction: column-reverse;
    flex-wrap: wrap;
    max-width: 98vw;
    margin: 0 auto;
  }
  .game-zone-restauracion-text {
    max-width: 90%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .game-zone-restauracion-slider {
    position: relative;
    width: 100%;
    height: 50vw;
    overflow: hidden;
    background-color: #00000000;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .game-zone-restauracion-button {
    display: inline-block;
    padding: 0.7vw 1.5vw;
    background-color: #fff;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 0.3vw;
    font-size: 4vw;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  }
  .footer-copy {
    margin-top: 2vw;
    font-size: 2.7vw;
    color: #888;
    margin-left: 0.6vw;
    margin-bottom: -0.2vw;
  }
  .garantia-products h2 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 6.5vw;
    margin-bottom: 2vw;
    color: #111;
  }
  .garantia-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30vw, 1fr));
    gap: 2vw;
  }
  .garantia-product-card h3 {
    font-size: 5.2vw;
    margin: 1.6vw 0;
    font-weight: 600;
  }
  .garantia-main {
    width: 60%;
  }
  .price {
    display: inline-block;
    font-size: 5vw;
    font-weight: bold;
    color: #f03818;
  }
  #cart-count {
    background: white;
    color: #f03818;
    border-radius: 50%;
    padding: 0.2vw 1.5vw;
    margin-left: 0.5vw;
    font-size: 5.9vw;
    vertical-align: middle;
  }
  .cart-icon {
    position: fixed;
    top: 165vw;
    right: 2vw;
    background-color: #f03818;
    color: white;
    padding: 1.5vw 1vw;
    border-radius: 2vw;
    font-size: 5.1vw;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 0 0.6vw rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: background-color 0.2s ease;
  }
  .garantia-product-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 3vw;
    align-items: flex-start;
  }
  .garantia-product-image img {
    max-width: 60vw;
  }
  .garantia-product-info h1 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 6.5vw;
    margin-bottom: 1vw;
    color: #000;
  }
  .garantia-product-description {
    font-size: 4.1vw;
    margin-bottom: 1.2vw;
    line-height: 1.6;
  }
  .garantia-product-specs {
    margin-bottom: 2vw;
    font-size: 4vw;
    list-style: none;
    padding: 0;
  }
  .garantia-product-price {
    font-size: 7.8vw;
    color: #f03818;
    font-weight: bold;
  }
  .garantia-product-detail {
    padding: 4vw 8vw;
    font-family: "Montserrat", sans-serif;
    color: #151515;
    background: #f7f7f7;
    font-size: 5vw;
  }
  .garantia-contact-section {
    background-color: #f9f9f9;
    padding: 4vw 2vw;
    text-align: center;
    font-size: 5vw;
  }
  .garantia-contact-form input,
  .garantia-contact-form textarea {
    padding: 1vw;
    font-size: 6vw;
    border: 1px solid #ccc;
    border-radius: 0.5vw;
    resize: vertical;
  }
  .garantia-contact-btn {
    background-color: #000000;
    color: #fff;
    border: none;
    padding: 1vw 2vw;
    font-size: 5vw;
    border-radius: 0.5vw;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  .thankyou-container h1 {
    font-size: 6.5vw;
    color: #f03818;
  }
  .thankyou-container p {
    font-size: 5.2vw;
    margin-top: 1vw;
    line-height: 1.6;
  }
  .thankyou-btn {
    margin-top: 2vw;
    display: inline-block;
    background-color: #ffffff;
    color: #000000;
    padding: 1vw 2vw;
    border-radius: 0.5vw;
    text-decoration: none;
    font-weight: bold;
    font-size: 5vw;
    transition: background-color 0.3s ease;
  }
  .repair-title {
    font-size: 5.6vw;
    font-weight: 700;
    margin-bottom: 1vw;
    color: #f03818;
    text-transform: uppercase;
  }
  .repair-description {
    font-size: 3.95vw;
    line-height: 1.6;
    margin-bottom: 1.5vw;
    color: #d0d0d0;
  }
  .repair-block img {
    max-width: 80vw;
    height: auto;
    margin-top: 1vw;
  }
  .repair-option-title {
    font-size: 6.1vw;
    font-weight: 600;
    margin-bottom: 0.5vw;
    color: #ffffff;
  }
  .repair-option-text {
    font-size: 3.9vw;
    margin-bottom: 0.8vw;
    color: #bbb;
  }
  .repair-block {
    display: flex;
    align-items: flex-start;
    gap: 4vw;
    margin-bottom: 1vw;
    flex-direction: column;
    border-bottom: 1px solid #f03818;
    padding-bottom: 4vw;
  }
  .repair-section {
    max-width: 80vw;
    margin: 0 auto;
    padding: 5vw 0;
    font-size: 5vw;
    font-family: "Montserrat", sans-serif;
    color: #e3e3e3;
  }
  .repair-button {
    display: inline-block;
    background: #f03818;
    color: #fff;
    padding: 0.6vw 1.5vw;
    font-size: 5.9vw;
    font-weight: 600;
    border-radius: 0.4vw;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
  }
  .garantia-section {
    display: flex;
    gap: 3vw;
    padding: 0 0;
    padding-left: 2vw;
    background: #f7f7f7;
    font-family: "Montserrat", sans-serif;
    color: #151515;
  }
  .garantia-main h2 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 8.5vw;
    margin-bottom: 1vw;
    margin-top: 0;
    color: #111;
    text-align: left;
  }
  .garantia-main p {
    font-size: 4vw;
    margin-bottom: 1.2vw;
    line-height: 1.7;
  }
  .garantia-block h3 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 6.8vw;
    color: #000000;
    margin-bottom: 1vw;
  }
  .garantia-block img {
    max-width: 20vw;
    margin: 0 auto 1vw auto;
    display: block;
  }
  .garantia-sidebar {
    width: 35%;
    background: #ffffff;
    padding: 3vw 2vw;
    border-left: 3px solid #f03818;
    font-size: 2.95vw;
  }
  .garantia-sidebar {
    width: 35%;
    background: #ffffff;
    padding: 3vw 2vw;
    border-left: 3px solid #f03818;
    font-size: 3.5vw;
  }
  .sidebar-contact p,
  .sidebar-contact a {
    margin: 0.5vw 0;
    color: #111;
    font-size: 2.95vw;
    text-decoration: none;
  }
  .sidebar-social img {
    width: 4vw;
    margin-right: 1vw;
    transition: transform 0.3s ease;
  }
  .garantia-block-li {
    font-size: 4vw;
  }
  .cookie-links li a {
    font-size: 5vw;
    color: #f03818;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.2s ease;
  }
  .cookie-links {
    font-size: 5vw;
    color: #f03818;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.2s ease;
  }
  .garantiablock {
    font-size: 6vw;
  }
  .garantiablock img {
    max-width: 60vw;
    display: block;
  }
}
