* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Helvetica Neue", Arial, sans-serif;
  }
  
  body {
    background: #fff;
    color: #000;
  }
  
  /* HEADER */
  .header {
    border-bottom: 1px solid #eee;
  }
  
  .nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 15px;
  }
  
  .nav a {
    text-decoration: none;
    font-weight: 600;
    color: black;
  }
  
  .nav .sale a {
    color: red;
  }
  
  /* HERO */
  .hero {
    position: relative;
  }
  
  .hero img {
    width: 100%;
    height: 520px;
    object-fit: cover;
  }
  
  .hero-text {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: white;
  }
  
  .hero-text h1 {
    font-size: 48px;
    margin-bottom: 10px;
  }
  
  .hero-text p {
    font-size: 18px;
    margin-bottom: 20px;
  }
  
  .hero-text button {
    padding: 12px 24px;
    font-weight: bold;
    border: none;
    cursor: pointer;
  }
  
  /* PRODUCTS */
  .products {
    padding: 60px 80px;
  }
  
  .products h2 {
    font-size: 32px;
    margin-bottom: 30px;
  }
  
  .product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
  }
  
  .product {
    border: 1px solid #eee;
    padding: 15px;
    transition: 0.3s;
  }
  
  .product img {
    width: 100%;
  }
  
  .product:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }
  
  .price {
    font-weight: bold;
    margin-top: 10px;
  }
  
  .name {
    margin: 5px 0;
  }


  /* BRAND BANNER */
.brand-banner {
    position: relative;
    margin: 80px 0;
  }
  
  .brand-banner img {
    width: 100%;
    height: 520px;
    object-fit: cover;
  }
  
  .brand-text {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: white;
  }
  
  .brand-text h2 {
    font-size: 42px;
    margin-bottom: 10px;
  }
  
  .brand-text p {
    font-size: 18px;
    margin-bottom: 20px;
  }
  
  .brand-text button {
    padding: 12px 26px;
    font-weight: bold;
    border: none;
    cursor: pointer;
  }
  
  /* COLLECTION */
  .collection {
    padding: 60px 80px;
  }
  
  .collection-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
  }
  
  .collection-header h2 {
    font-size: 32px;
  }
  
  .collection-header a {
    text-decoration: none;
    font-weight: bold;
    color: black;
  }
  
  /* SHIRT GRID */
  .shirt-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
  }
  
  .product-shirt {
    border: 1px solid #eee;
    padding: 15px;
    transition: 0.3s;
  }
  
  .product-shirt img {
    width: 100%;
  }
  
  .product-shirt:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  }
  
  .product-shirt .price {
    font-weight: bold;
    margin-top: 10px;
  }
  
  .product-shirt .title {
    margin: 5px 0;
  }
  
  