body {
      margin: 40px auto;
      max-width: 800px;
      padding: 0 20px;
      background-color: white;
      color: #333;
      overflow-x: hidden;
    }

a {
      color: #000000;
      text-decoration: none;
    }

h1, p.description {
      text-align: center;
    }

.look {
      margin-bottom: 40px;
    }

.look img {
      width: 100%;
      height: auto;
      display: block;
      margin-bottom: 5px;
    }

.caption {
      display: flex;
      justify-content: space-between;
      font-size: 14px;
    }

.caption .name {
      text-align: left;
      font-weight: bold;
    }

.caption .credit {
      text-align: right;
      font-size: 12px;
      color: #777;
    }
    
footer {
      text-align: center;
      padding: 0.5rem;
      background: #fafafa;
      color: #888;
      font-size: 0.9rem;
      border-top: 1px solid #e0e0e0;
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      z-index: 100;
    }

footer a {
      margin: 0 0.5rem;
      color: #555;
    }
    
.product-container {
      padding-top: 40px;
      padding-bottom: 40px;
      text-align: center;
    }
    
.product-card {
      width: 35%;
      max-width: 600px;
      margin: 1rem auto;
    }

.product-image {
      width: 100%;
      height: auto;
      display: block;
    }
    
.fixed-header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 80px;
      background: white;
      display: flex;
      align-items: center;
      justify-content: space-between;
      z-index: 100;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      padding: 0 1.5rem;
    }

.fixed-header .intro-text {
      font-size: 1.5rem;
      color: black;
    }
    
.intro-text {
      font-size: 1.5rem;
      color: white;
      transition: font-size 0.5s ease, color 0.5s ease;
      z-index: 102;
    }

.menu-button {
      color: black;
      background: none;
      border: none;
      font-size: 1.5rem;
      cursor: pointer;
      z-index: 101;
      margin-left: auto; 
      margin-right: 8vh;
    }

.sidebar {
      position: fixed;
      top: 80px;
      width: 20vw;
      height: calc(100vh - 80px);
      background: #f0f0f0;
      box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
      z-index: 99;
      padding: 2rem;
      overflow-y: auto;
      right: 0;
      transform: translateX(100%);
      transition: transform 0.4s ease;
    }
    
.sidebar.open {
      transform: translateX(20%);
    }
    
.text{
      text-align: center;
      margin: 0px;
      margin-bottom: 40px;
    }
    
    
@media (max-width: 768px) {
        
        .product-container {
          padding-top: 40px;
          padding-bottom: 10px;
          text-align: center;
        }
    
        footer {
            padding: 0.2rem;
        }
        
        .sidebar{
            width: 20vh;
        }
}