.copyright::after {
  content: "(Tahi Tech Ltd) \A info@loveeatery.com";
  white-space: pre; /* Preserve newline characters */
  display: block;
  color: #888; /* Optional styling */
  font-size: 14px; /* Adjust font size as needed */
}


.nav-footer {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 60px; /* Adjust height as needed */
    background-color: #f0f0f0; /* Example background color */
}

.nav-footer::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    height: 100%; /* Adjust the height of the pseudo-element to match the parent */
    width: 600px; /* Let the width adjust based on the content */
    padding: 0 10px; /* Adjust padding as needed */
    box-sizing: border-box;
}

.nav-footer::after {
    background-image: url('https://loveeatery.com/uploads/restorants/visa.png'), 
                      url('https://loveeatery.com/uploads/restorants/mastercard.png'), 
                      url('https://loveeatery.com/uploads/restorants/americanexpress.png');
    background-repeat: no-repeat;
    background-size: auto 100%; /* Adjust background-size */
    background-position: left 0px center, /* Visa logo */
                        left 90px center, /* Mastercard logo */
                        left 180px center; /* American Express logo */
}