* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: Arial, sans-serif;
    background: #fafafa;
    color: #222;
    text-align: center;
  }
  
  header {
    padding: 1.5rem 1rem 0.5rem;
  }
  
  .logo {
    width: 160px;
    margin-bottom: 0.1rem;
  }
  
  .tagline {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.75rem;
  }
  
  .shop-button {
    display: inline-block;
    background: #ff4747;
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background 0.3s;
  }
  
  .shop-button:hover {
    background-color: #e13838;
    transform: scale(1.05);
    transition: 0.2s ease;
  }
  
  .wall {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    padding: 2rem;
  }
  
  .wall img,
  .wall video {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  footer {
    padding: 2rem;
    color: #555;
    font-size: 0.9rem;
  }
  