 body {
     font-family: 'Arial', sans-serif;
     background-color: #121212;
     color: #ffffff;
     margin: 0;
     padding: 0;
 }

 /*fixed*/
 nav {
     background-color: #0d0d0d;
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 20px;
     padding-left: 30px;
     border-bottom: 1px solid #333;
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     z-index: 1000;
 }

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

 nav .menu a {
     color: white;
     text-decoration: none;
     margin: 0 15px;
     font-size: 16px;
 }

 nav a:hover {
     color: #ff6600;
 }

 .menu {
     /* margin-left: 400px; */
     margin-right: 53px;
 }

 /*end*/

 h1 {
     text-align: center;
     font-size: 36px;
     color: #ff9800;
     margin-top: 30px;
     font-weight: bold;
     text-shadow: 1px 1px 2px #000;
 }

 table {
     width: 80%;
     margin: 20px auto;
     border-collapse: collapse;
     background-color: #1e1e1e;
     box-shadow: 0 4px 8px rgba(255, 193, 7, 0.2);
     border-radius: 10px;
     overflow: hidden;
 }

 th,
 td {
     padding: 15px;
     text-align: left;
     border-bottom: 1px solid #2c2c2c;
 }

 th {
     background-color: #ff9800;
     color: #fff;
 }

 td {
     color: #f5f5f5;
 }

 tr:hover {
     background-color: #2a2a2a;
 }

 .total,
 .cart-info {
     width: 80%;
     margin: 20px auto;
     font-size: 18px;
     padding: 15px 20px;
     background-color: #1e1e1e;
     border-radius: 5px;
     box-shadow: 0 4px 8px rgba(255, 215, 0, 0.2);
 }

 .total {
     color: #ffc107;
     font-weight: bold;
     font-size: 22px;
     text-align: right;
 }

 .cart-info {
     color: #4caf50;
 }

 .address-form {
     width: 80%;
     max-width: 600px;
     margin: 30px auto;
     background-color: #1e1e1e;
     padding: 25px;
     border-radius: 10px;
     box-shadow: 0 4px 8px rgba(255, 152, 0, 0.3);
 }

 .address-form h3 {
     color: #ffcc00;
     font-size: 22px;
     margin-bottom: 15px;
 }

 .address-form input,
 .address-form textarea {
     width: 100%;
     padding: 12px;
     margin-bottom: 15px;
     border: 1px solid #555;
     border-radius: 5px;
     background-color: #2c2c2c;
     color: #fff;
     font-size: 16px;
 }

 .address-form button {
     padding: 12px 20px;
     background-color: #ff9800;
     color: #fff;
     border: none;
     border-radius: 5px;
     font-size: 16px;
     cursor: pointer;
     width: 100%;
     transition: background-color 0.3s ease;
 }

 .address-form button:hover {
     background-color: #e68900;
 }

 .remove-btn {
     padding: 6px 12px;
     background-color: #e53935;
     color: white;
     border: none;
     border-radius: 5px;
     cursor: pointer;
     font-size: 14px;
     transition: background-color 0.3s ease;
 }

 .remove-btn:hover {
     background-color: #b71c1c;
 }

 .cart-empty-message {
     text-align: center;
     font-size: 18px;
     color: #ffc107;
     padding: 20px;
     background-color: #1e1e1e;
     border-radius: 10px;
     margin-top: 30px;
     box-shadow: 0 4px 8px rgba(255, 152, 0, 0.2);
 }

 .modal {
     display: none;
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-color: rgba(0, 0, 0, 0.8);
     justify-content: center;
     align-items: center;
     z-index: 999;
 }

 .modal-content {
     background-color: #1e1e1e;
     padding: 30px;
     border-radius: 10px;
     text-align: center;
     color: #ffcc00;
     font-size: 20px;
     box-shadow: 0 0 20px rgba(255, 193, 7, 0.4);
 }

 .badge {
     font-size: 14px;
     margin-top: 8px;
     background-color: #2e7d32;
     color: white;
     padding: 5px 10px;
     border-radius: 5px;
     display: inline-block;
 }

 .align {
     margin-top: 100px;
 }
@media (max-width: 768px){
    .align {
        margin-top: 120px;
    }
    
}

 .animated-line {
     position: absolute;
     bottom: 0;
     left: 0;
     height: 1px;
     width: 100%;
     overflow: hidden;
 }

 .animated-line::before {
     content: "";
     position: absolute;
     bottom: 0;
     left: 0;
     width: 100%;
     height: 1px;
     background: linear-gradient(to left, gold 50%, transparent 0%);
     background-size: 200% 100%;
     animation: moveLine 20s linear infinite;
 }

 @keyframes moveLine {
     0% {
         background-position: -100% 0%;
     }

     100% {
         background-position: 200% 0%;
     }
 }