
/* === style-fix.css: Patch for layout polish === */

/* Consistent spacing for headers */
h1, h2, h3 {
  margin-top: 0;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

/* Fix card spacing and alignment */
.card, .product-card, .event-card {
  /*margin-bottom: 2rem;
  padding: 1.5rem;*/
  border-radius: 0.5rem;
  overflow: hidden;
}

/* Improve mobile layout */
@media (max-width: 768px) {
  .hero {
    text-align: center;
    padding: 2rem 1rem;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .shop .row,
  .events .row {
    row-gap: 2rem;
  }
}

/* Improve image handling in cards */
.card img, .product-card img, .event-card img {
  max-width: 100%;
  height: auto;
  display: block;
  /* margin-bottom: 1rem; */
  border-radius: 0.25rem;
}

/* Button styling */
.btn, .btn-primary, .btn-outline-primary {
  padding: 0.6rem 1.2rem;
  font-weight: 600;
  text-align: center;
}

/* Ensure buttons and text are vertically aligned */
.d-flex.align-items-center {
  align-items: center !important;
}

/* Improve bottom margin for text blocks */
p {
  margin-bottom: 1rem;
}

/* Override tight grid gutters */
.row > [class^="col-"], .row > [class*=" col-"] {
  padding-left: 1rem;
  padding-right: 1rem;
}
/* === Footer Cleanup === */
footer {
  margin-top: 4rem;
  padding: 2rem 1rem;
  background-color: #0d0d0d; /* adjust as needed */
  color: #fff;
  text-align: center;
}

footer p, footer a {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

footer .social-icons {
  margin-top: 1rem;
}

@media (max-width: 768px) {
  footer {
    padding: 2rem 1rem;
  }
}

/* === Sticky Footer === */
html, body {
  height: 100%;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.featured-image {
  transition: transform 0.3s ease;
}

.featured-image:hover {
  transform: scale(1.05) rotate(-2deg);
}

.price-info {
  font-size: 1.7rem;
}

@media (max-width: 576px) { 
  .product-description {
    font-size: .9rem !important;
    line-height: 1.6;
  }

  .price-info {
    font-size: 1.2rem;
  }
 }

 .btn-outline-secondary {
  border-color: #00ffff;
  color: #00ffff;
 }

 .btn-outline-secondary:hover {
  border-color: #00ffff;
  background-color: #00ffff;
  color: black;
 }

 .card-transparent {
  background-color: rgba(0, 0, 0, 0.8) !important;
  border: 1px solid rgba(255, 255, 255, 0.8) !important;
}

h5.card-title {
  font-size: .6rem;
  font-weight: 600;
  color: #fff;
  text-shadow: none;
}

@media (max-width: 576px) {
  .table-responsive table thead {
    display: none;
  }

  .table-responsive table tbody tr {
    display: block;
    margin-bottom: 1rem;
    border: 1px solid #444;
    border-radius: 0.5rem;
    padding: 1rem;
    background-color: #1c1c1c;
  }

  .table-responsive table tbody td {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
  }

  .table-responsive table td::before {
    content: attr(data-label);
    font-weight: bold;
    text-transform: uppercase;
    color: #aaa;
  }

  .table .product-image {
    width: 64px !important;
    height: 64px !important;
    margin-right: 1rem;
  }

  .sold-stamp{
    font-size: 1rem !important;
    padding: 1rem;
  }
}

.sold-out {
  font-size: 1rem;
}

.product-image-cover {
  width: 100%;
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 0.375rem; /* Match Bootstrap rounded if needed */
}

.grecaptcha-badge {
display: none !important;
}