  /* (A) ENTIRE PAGE */
  #cart-wrap {
    font-family: arial, sans-serif;
    display: grid;
    grid-template-columns: 70% 30%;
    margin: 0 auto;
    max-width: 1000px;
  }
  input.cart, button.cart {
    font-weight: normal;
    font-size: 1em;
    padding: 10px; 
    border: none;
    color: #fff;
    background: #98282c;
    cursor: pointer;
  }
  
  /* (B) PRODUCTS LIST */
  #cart-products {
    display: grid;
    grid-template-columns: auto;
    grid-gap: 10px;
    padding: 10px;
  }
  .p-item {
    padding: 10px;
    border: 1px solid #aaa;
    text-align: center;
  }
  .p-name {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1.1em;
  }
  .p-img { max-width: 420px;
  }
  .p-desc {
    color: #777;
    font-size: 0.9em;
    line-height: 1.5em;
  }
  .p-price {
    font-weight: bold;
    font-size: 1.1em;
    margin: 10px 0;
  }
  input.p-add { 
    width: 50%;
    border-radius: 4px;
  } 
  /* (D) CURRENT SHOPPING CART */
  #cart-items {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .c-item {
    display: flex;
    flex-wrap: wrap;
    background: #f1f1f1;
    border: 1px solid #aaa;
    padding: 10px;
    margin-bottom: 10px;
  }
  .c-name {
    width: 100%;
    font-size: 1.2em;
    line-height: 1.5em;
  }
  .c-del { 
    width: 18%;
    border-radius: 4px 0px 0px 4px;
 }
  .c-qty {
    width: auto;
    font-size: 1em;
  }
  input.c-empty, input.c-checkout {
    width: 100%;
    margin-top: 10px;
    border-radius: 4px;
  }
  .c-emptycart {
    padding: 5px;
    border: 1px solid #aaa;
    text-align: center;
  }
  /* (E) RESPONSIVE */
  @media screen AND (max-width: 768px) {
    #cart-wrap { grid-template-columns: 60% 40%; }
    #cart-products { grid-template-columns: auto; }
  }