/** Shopify CDN: Minification failed

Line 194:2 Unexpected "50%"
Line 195:0 Unexpected "}"
Line 198:2 Unexpected "0%"
Line 199:2 Unexpected "50%"
Line 200:2 Unexpected "100%"

**/

body {
  font-family: 'Lucida Console', Monaco, monospace;
  background-color: #fff;
  color: #111;
  margin: 0;
  padding: 0;
}

.site-header {
  background: #ff0066;
  color: white;
  padding: 12px;
  font-size: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 5px solid #000;
}

.site-logo {
  max-height: 50px;
  border: 3px solid #000;
  padding: 4px;
  background-color: #fff;
}

.home-link {
  text-decoration: none;
  color: white;
}

.cart-link {
  color: white;
  text-decoration: none;
  padding: 5px 10px;
  background-color: #000;
  border: 2px solid #fff;
  font-weight: bold;
}

.cart-count {
  background: yellow;
  color: black;
  border: 2px solid black;
  padding: 0 6px;
  font-size: 0.75rem;
  margin-left: 0.5rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 30px;
  background-color: #f6f6f6;
}

.product-card {
  background: #fff;
  padding: 15px;
  border: 4px solid #111;
  text-align: center;
  transition: all 0.2s ease;
}

.product-card:hover {
  transform: scale(1.05);
  border-color: #ff0066;
}

.product-card img {
  max-width: 100%;
  border: 2px dashed #111;
}

.product-page {
  padding: 30px;
  background-color: #fff;
  max-width: 1000px;
  margin: 30px auto;
  border: 5px solid #000;
}

.product-thumbnail {
  max-width: 150px;
  margin: 10px;
  border: 2px dashed #000;
}

.product-info {
  text-align: left;
}

select, button, input {
  font-family: 'Lucida Console', Monaco, monospace;
  font-size: 14px;
  padding: 6px;
  border: 3px solid #111;
  margin-top: 8px;
  background-color: #fffc00;
}

button {
  cursor: pointer;
  background-color: #111;
  color: #fff;
}

.cart-page {
  background-color: #fff;
  margin: 30px auto;
  padding: 30px;
  max-width: 1000px;
  border: 5px solid #000;
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.cart-table th, .cart-table td {
  border: 2px solid #000;
  padding: 10px;
  text-align: left;
}

.cart-product-image {
  width: 60px;
  border: 2px dashed #000;
}

.remove-button {
  color: red;
  text-decoration: none;
  font-weight: bold;
}

.cart-actions {
  margin-top: 20px;
}

.checkout-button, .browse-button {
  background: #000;
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  border: 3px solid #ff0066;
  font-weight: bold;
  margin-right: 10px;
}

@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .cart-link {
    margin-top: 10px;
  }

  .checkout-button, .browse-button {
    display: block;
    width: 100%;
    margin-bottom: 10px;
  }
}

  50% { opacity: 0.3; }
}

@keyframes wiggle {
  0% { transform: rotate(-1deg); }
  50% { transform: rotate(1deg); }
  100% { transform: rotate(-1deg); }
}

@keyframes zoomFlash {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.8; }
  100% { transform: scale(1); opacity: 1; }
}

.site-header {
  animation: blink 1s infinite alternate;
}

.product-card:hover {
  animation: zoomFlash 0.4s ease-in-out;
}

.cart-count {
  animation: wiggle 0.5s infinite;
}

.checkout-button:hover, .browse-button:hover, .remove-button:hover {
  animation: blink 0.6s infinite alternate;
}



/* Ensure cart button is right-aligned */
.site-header .header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  width: 100%;
}

.site-header .logo-container {
  flex: 1;
}

.site-header .cart-container {
  flex-shrink: 0;
}

.site-header .cart-link {
  display: inline-block;
  padding: 8px 12px;
  background: black;
  color: white;
  border: 2px solid white;
  font-weight: bold;
  text-decoration: none;
}



/* Responsive buttons on cart page */
.cart-page .btn,
.cart-page .btn.highlight,
.cart-page .btn.continue {
  width: 100%;
  box-sizing: border-box;
  max-width: 100%;
  font-size: 16px;
  word-wrap: break-word;
}



/* Ensure 'Keep browsing' button is responsive on mobile */
.cart-page .btn.continue {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  display: block;
  text-align: center;
  font-size: 16px;
}
