* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
      background-color: #4daac1;
      color: #130b0b;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }
    .Home{
      font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
      color: #f1ecec;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    a {
      color: inherit;
      text-decoration: none;
      cursor: pointer;
    }
    

    header {
      background: #2a8f8fa7;
      border-bottom: 1px solid #7c6d6d;
      position: sticky;
      top: 0;
      z-index: 100;
    }
    .nav-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1rem;
      display: flex;
      align-items: center;
      height: 60px;
      justify-content: space-between;
    }
    .logo {
      font-weight: 700;
      font-size: 1.6rem;
      color: #fcfcfc; 
      letter-spacing: 0.05em;
    }
    nav ul {
      list-style: none;
      display: flex;
      gap: 1.5rem;
    }
    nav ul li a {
      font-weight: 600;
      font-size: 0.9rem;
      text-transform: uppercase;
      transition: color 0.3s ease;
    }
    nav ul li a:hover {
      color: #4d00e6;
    }
    
    .hero {
      position: relative;
      height: 80vh;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgb(225, 225, 225);
      text-align: center;
    }
    
    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      padding: 0 20px;
    }
    
    .hero h1 {
      font-size: 3rem;
      font-weight: 700;
      margin-bottom: 1rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }
    
    .hero p {
      font-size: 1.25rem;
      margin-bottom: 2rem;
    }
    
    .hero-video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
    }
    
    .hero::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(143, 75, 75, 0.4);
      z-index: 1;
    }
    
    .product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 25px;
      margin-top: 20px;
      padding: 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .product-card {
      background-color: rgb(245, 245, 245);
      padding: 15px;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(102, 96, 96, 0.324);
      transition: transform 0.2s ease;
    }

    .product-card:hover {
      transform: translateY(-5px);
    }

    .product-card img {
      width: 100%;
      height: auto;
      border-radius: 6px;
    }

    .product-card h3 {
      margin: 10px 0 5px;
      font-size: 1rem;
    }

    .product-card p {
      color: #532e31;
      font-weight: bold;
    }

    footer {
      background-color: #2c3e50;
      color: white;
      text-align: center;
      padding: 15px 0;
      margin-top: 40px;
    }

    .WOMEN{
      text-align: center;
      font-size: larger;
      color: aliceblue;
    }
    .MEN{
      text-align: center;
      font-size: larger;
      color: aliceblue;
    }
    .KIDS{
      text-align: center;
      font-size: large;
      color: aliceblue;
    }
    media (max-width: 768px) {
      .hero h1 {
        font-size: 2rem;
      }
      
      .hero p {
        font-size: 1rem;
      }
      
      nav ul {
        gap: 1rem;
        font-size: 0.8rem;
      }
      
      .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
      }
    }