@font-face {
  font-family: 'Faruma';
  src: url('Faruma.ttf') format('truetype');
}

body {
  font-family: Arial, sans-serif, 'Faruma';;
  margin: 0;
  background-color: #ffc595bb;
  color: #eaeaea;
}
.top-bar {
  position: sticky;
  top: 0;
  height: 60px;
  margin: 15px;
  padding: 0 24px;
  display: flex;
  align-items: center;

  background: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);

  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);

  box-shadow: 0 5px 0px rgba(25, 240, 255, 0.6);
  transform: translateY(-120%);
  opacity: 0;
  animation: slideDown 0.4s ease-out forwards;

  z-index: 1000;
}
.logo {
  height: 32px;
  width: auto;
}
.wvingslogo {
  height: 50px;
  width: auto;
}
@keyframes slideDown {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.brand {
display: flex;
  align-items: center;
  gap: 20px; 
} 
#loader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #ffffff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spinner {
  border: 8px solid #ffffff;
  border-top: 8px solid #000000;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@media (max-width: 768px) {
.tabbuttons {
    gap: 10px;
  }

.tabbuttons a {
    font-size: 13px;
    padding: 6px 10px;
  }
}
.tabbuttons {
  display: flex;
  gap: 20px;
  margin-left: auto;
}
.tabbuttons a {
  color: #eaeaea;
  text-decoration: none;
  font-size: 14px;
  padding: 8px 14px;
  border-radius: 8px;
  transition: background 0.3s ease, color 0.3s ease;
}

.tabbuttons a:hover {
  outline: 1px solid rgba(255, 255, 255, 0.4);
  outline-offset: -1px;
}
h2{
  color: rgb(0, 0, 0)
}
h4{
  font-weight: unset;
}
  #content {
  margin: 20px;
  font-size: 1.2em;
}

#content h3 {
  font-size: 2em;
  color: #000000;
}

#content h4 {
  color: #000000;
}
#content {
  padding: 20px;
}
/* Container for all items */
.item-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px 0;
  justify-content: center;
  width: 100%;
  box-sizing: border-box
}

/* Individual Item Card */
.item-card {
  width: 200px;
  background: rgba(255, 255, 255, 0.05); /* Subtle dark glass look */
  border-radius: 18px; /* Rounded corners */
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden; /* Ensures image follows the rounded corners */
  transition: transform 0.3s ease;
}

.item-card:hover {
  transform: translateY(-5px); /* Gentle lift on hover */
}

/* Image styling */
.item-image img {
  width: 100%;
  height: 180px;
  object-fit: cover; /* Keeps image from stretching */
}

/* Text and Price styling */
.item-info {
  padding: 15px;
  text-align: center;
}

.item-name {
  font-weight: bold;
  margin-bottom: 5px;
  color: #fff;
}

.item-price {
  color: #ffffff; /* Using that cyan color from your shadow earlier */
  font-size: 1.1rem;
  margin-bottom: 10px;
}

/* Button Styling */
.buy-btn {
  background: #fff;
  border: none;
  padding: 8px 15px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: bold;
}
#content {
  text-align: center; /* Centers the headings */
  padding: 20px;
}

.item-container {
  display: flex;
  flex-wrap: wrap;      /* Allows items to move to next line */
  justify-content: center; /* CRITICAL: Centers items horizontally */
  align-items: center;
  gap: 30px;            /* Space between cards */
  margin-top: 40px;
  width: 100%;          /* Ensures it spans the full width to center correctly */
}

.item-card {
  width: 220px;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  /* Remove any float: left if you had it */
}
/* Style for the link button on the store page */
.buy-btn-link {
  display: block;
  background: #d4600086;
  color: #000;
  text-decoration: none;
  padding: 10px;
  border-radius: 12px;
  font-weight: bold;
  margin-top: 10px;
}

/* Layout for the specific product page */
.product-display {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
  margin-top: 50px;
  background: rgba(255, 255, 255, 0.9);
  padding: 30px;
  border-radius: 20px;
  color: #333;
}

.product-main-image img {
  max-width: 400px;
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.product-description {
  max-width: 400px;
  text-align: left;
}

.price-tag {
  font-size: 2rem;
  color: #000;
  font-weight: bold;
  margin: 10px 0;
}

.order-btn {
  color: white;
  margin: 5px;
  border: none;
  padding: 15px 30px;
  font-size: 1.1rem;
  border-radius: 30px;
  cursor: pointer;
  width: 100%;
  font-weight: bold;
}
#footer {
  background-color: #000;
  color: rgb(255, 255, 255);
  padding: 20px;
  text-align: center;
  border-top: 8px solid;
  border-image: linear-gradient(to right, rgb(0, 204, 5), white, rgb(183, 43, 42)) 1;
}

@media screen and (max-width: 768px) {
  #productsearch {
    font-size: 16px;
  }
}
#productsearch {
  width: 80%;
  max-width: 400px;
  padding: 12px 20px;
  margin: 20px 0;
  border: 1px solid #ccc;
  border-radius: 25px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  font-family: inherit;
  outline: none;
  box-shadow: 0 2px 5px rgba(0,0,0,0,1);

}

#productsearch:focus {
  border-color: #7726;
}