/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Body and general layout */
  body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #000;
    color: #fff;
    font-family: Arial, sans-serif;
    text-align: center;
  }
  
  /* Container styling */
  .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2vh;
    max-width: 400px;
    width: 90%;
  }
  
  /* Hide content by default */
  .hidden {
    visibility: hidden;
    display: none;
  }
  
  /* Access title styling */
  .access-title {
    font-size: 2rem;
    margin-bottom: 2vh;
    color: #fff;
  }
  
  /* Form styling */
  .access-form {
    display: flex;
    flex-direction: column;
    gap: 1vh;
    width: 100%;
  }
  
  input[type="password"] {
    padding: 1vh;
    width: 100%;
    border: none;
    border-radius: 5px;
    background-color: #1a1a1a;
    color: #fff;
    font-size: 1rem;
  }
  
  .access-button {
    padding: 1vh;
    background-color: #fff;
    color: #000;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .access-button:hover {
    background-color: #333;
    color: #fff;
  }
  
  /* Alternative link styling */
  .alt-link {
    margin-top: 2vh;
    font-size: 0.9rem;
  }
  
  .alt-link a {
    color: #fff;
  }
  
  .alt-link a:hover {
    text-decoration: none;
  }
  
  /* Product grid layout */
  .product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Keep 2 columns per row */
    gap: 2vh;
    padding: 2vh;
    padding-top: 0px;
    background-color: black;
    color: white;
  }
  
  .product-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .product-item img {
    max-width: 100%;
    height: auto;
    margin-bottom: 0.8vh;
  }
  
  .purchase-link {
    font-weight: bold;
    color: white;
    text-decoration: none;
    font-size: 1rem;
  }
  
  .purchase-link:hover {
    color: gray;
  }
  
  /* Navbar styling */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1vh 2vh;
    background-color: black;
  }
  
  .navbar .logo {
    max-height: 18vh;
    padding: 0 2vh;
  }
  
  .navbar .nav-link {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
  }
  
  .navbar .nav-link:hover {
    color: gray;
  }

  .cap {
    font-style: italic;
    font-size: 12px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #F2F0EF;
  }

  .prod-cap {
    font-style: italic;
    font-size: 12px;
    margin-bottom: 15px;
    color: #F2F0EF;
  }
  
  /* Responsive scaling for smaller screens */
  @media (max-width: 600px) {
    .container, .product-grid, .navbar {
      transform: scale(0.9); /* Scale down everything slightly */
    }
    .access-title {
      font-size: 1.6rem;
    }
    .access-button, input[type="password"], .purchase-link {
      font-size: 0.9rem;
    }
    .navbar .nav-link {
      font-size: 0.8rem;
    }
  }
  