* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.top-header-bar {
    background-color: hsl(52, 100%, 50%, 1);
    color: black;
    text-align: center;
    font-size: 14px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    width: 100vw;
    padding: 10px 0;
    height: 40px;
}

.header-main {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #ffffff;
    border-bottom: 1px solid #eaeaea;
}

.logo-and-basket {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    flex-grow: 1;
    text-align: center;
    width: 80%;
    padding-left: 15%;
}

#checkout-logo {
    padding-left: 0%;
}

.logo img {
    height: 50px;
    max-width: 20%;
        min-width: 10em;
}

.cart-icon {
    margin-left: auto;
    width: 10%;
    margin-right: 5%;
}

.cart-icon img {
    width: 30px;
}

.navigation {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 10px;
}

.navigation ul {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
}

.navigation a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    transition: color 0.3s;
}

.navigation a:hover {
    color: #007BFF;
}

@media (max-width: 768px) {
    .top-header-bar {
        font-size : 12px;
        padding: 8px 0;
    }

    .header-main {
        flex-direction: column;
    }

    .logo {
        order: 1;
    }

    .logo img {
        height: 40px;
    }

    .cart-icon {
       order:2;
    }

    .navigation ul {
        flex-direction: row;
        align-items: center;
    }

    .image {
        width: 80%;
        margin: auto;
    }
}

.checkout-container {
    display: flex;
    justify-content: space-between;
    max-width: 25%;
    height: 4 em;
    padding: 20px;
    flex-wrap: 20px;
  }

  .checkout-img-container {
    max-width: 100%;
    height: 1 em;
  }

  .checkout-img-container img {
    max-width: 100%;
    height: 7em;
  }
  
  .cart-summary, .info-section, .customer-service {
    flex: 1;
    margin: 10px;
    min-width: 250px;
  }
  
  .cart-summary {
    border-right: 1px solid #ccc;
    padding-right: 20px;
  }
  
  .info-section {
    border-right: 1px solid #ccc;
    padding-right: 20px;
  }
  
  .customer-service {
    font-size: 14px;
  }

  .container {
    margin-top: 2em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

.container {
    max-width: 90%;
    position: relative;
}

.image {
    opacity: 1;
    display: block;
    width: 75%;
    height: auto;
    transition: opacity 0.5s ease-in-out;
    margin: auto;
}

.container:hover .image {
    opacity: 0.5;
}

