/* style.css */

body {
  background-color: black;
  background-image: url('https://www.transparenttextures.com/patterns/asfalt-dark.png');
  color: lime;
  font-family: "Courier New", monospace;
  text-align: center;
  font-size: 16px;
  padding: 0;
  margin: 0;
}

h1 {
  font-size: 36px;
  color: hotpink;
  margin-top: 40px;
  text-shadow: 2px 2px 0 lime;
}

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

.menu li {
  margin: 20px;
}

a {
  color: cyan;
  font-size: 20px;
  text-decoration: none;
  border: 2px dashed magenta;
  padding: 10px;
  display: inline-block;
}

a:hover {
  background-color: darkgreen;
  color: yellow;
}

marquee {
  margin-top: 50px;
  color: red;
  font-weight: bold;
}

.product-gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 60px;
  width: 100%;
}

.product-gallery > div {
  max-width: 400px;
  width: 100%;
  display: flex;
  justify-content: center;
}

a.fullsize-link {
  color: yellow;
  border-color: hotpink;
}

a.fullsize-link:hover {
  background-color: cyan;
  color: black;
}

/* Lightbox styling */
.lightbox {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox:target {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  box-shadow: 0 0 20px lime;
}

.lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: hotpink;
  text-decoration: none;
  font-weight: bold;
  line-height: 1;
}

.shopify-buy__product__image {
  display: none !important;
}

/* Center buy button layout */
.shopify-buy__layout-horizontal {
  justify-content: center !important;
  text-align: center !important;
}

/* Footer links container */
footer-links, small {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 10px;
  font-size: 10px;
}

small a {
  display: inline-block;
  margin: 2px 6px;
  font-size: 10px;
  color: gray;
}

/* ───────────────────────────────────── */
/* Mobile Responsiveness — max 768px */
/* ───────────────────────────────────── */
@media screen and (max-width: 768px) {
  h1 {
    font-size: 24px;
    margin-top: 20px;
  }

  .menu li {
    margin: 10px;
  }

  a {
    font-size: 16px;
    padding: 8px;
    border-width: 1px;
  }

  marquee {
    font-size: 12px;
    margin-top: 30px;
  }

  img {
    max-width: 80%;
    height: auto;
  }

  .product-gallery {
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
  }

  .lightbox img {
    max-width: 95%;
    max-height: 80%;
  }

  .lightbox .close {
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
  }

  body {
    font-size: 14px;
    padding: 10px;
  }

  small {
    font-size: 8px;
    line-height: 1.5;
    flex-wrap: wrap;
    justify-content: center;
  }

  small a {
    font-size: 9px;
    margin: 2px 4px;
  }
}

