body {
      margin: 0;
      font-family: Quicksand, sans-serif;
      background-color: #0c1a2d;
      color: white;
    }

    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #0e223f;
      border-bottom: 1px solid #2a3c57;
    }

    .logo {
      font-size: 20px;
      font-weight: bold;
    }

    .language {
      font-size: 16px;
    }

    footer {
      display: flex;
      justify-content: center;
      gap: 20px;
      padding: 15px 0;
      background-color: #0e223f;
      border-top: 1px solid #2a3c57;
    }

    main {
      padding: 20px;
      text-align: center;
    }

    .back{
        color: white;
        text-decoration: none;
        text-align: left;
        width: 100%;
        display: flex;
    }

    .product-price{
position: absolute;
    top: -12px;
    border-radius: 10px;
    box-shadow: 0px 0px 2px #ffffff4a;
    right: 20px;
    background: #0c1a2d;
    color: #ffffff;
    padding: 4px 10px;
    }

    .category-grid a{
        position: relative;
width: 100%;
    background-color: #142b47;
    border: 1px solid #2a3c57;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.2s;
    }

    .language a{
        color: white;
        text-decoration: none;
    }

    .language a.active{
        font-weight: bold;
        border-bottom: 1px solid white;
    }
footer i{
    color: white;
    font-size: 20px;
}
 .category-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 20px;
  }

  .category-grid a{
    color: white;
    text-decoration: none;
  }
  .category-box:hover {
    background-color: #1c3b60;
    transform: scale(1.03);
  }
