/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #0a0d14; /* Dark background to create contrast */
    color: #f5f5f5; /* Light color for readability */
    margin: 0;
    padding: 0;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  header {
    background-color: #161b22;
    padding: 20px;
    text-align: center;
  }
  
  header .logo {
    font-size: 2.5rem;
    color: #ff6f61;
    text-transform: uppercase;
  }
  
  nav ul {
    list-style: none;
    padding: 0;
  }
  
  nav ul li {
    display: inline;
    margin: 0 15px;
  }
  
  nav ul li a {
    color: #f5f5f5;
    text-decoration: none;
    font-size: 1.2rem;
  }
  
  nav ul li a:hover {
    color: #ff6f61;
  }
  
  /* Cart Section */
  .cart-section {
    padding: 60px 0;
    background-color: #1e2328; /* Dark background to make the items pop */
  }
  
  .cart-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 40px;
    color: #ff6f61;
  }
  
  .cart-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  
  .cart-item {
    display: flex;
    align-items: center;
    background-color: #21262d;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease-in-out;
  }
  
  .cart-item:hover {
    transform: scale(1.05);
  }
  
  .cart-item img {
    width: 160px;
    height: auto;
    margin-right: 30px;
    border-radius: 10px;
  }
  
  .cart-item-details {
    flex: 1;
  }
  
  .cart-item-details h3 {
    font-size: 1.8rem;
    color: #ff6f61;
    margin-bottom: 10px;
  }
  
  .cart-item-details p {
    font-size: 1.2rem;
    color: #b3b3b3;
    margin-bottom: 15px;
  }
  
  .cart-item-details .quantity {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .cart-item-details input {
    width: 60px;
    padding: 8px;
    border: 2px solid #ff6f61;
    border-radius: 5px;
    background-color: #161b22;
    color: white;
    text-align: center;
    font-size: 1.1rem;
  }
  
  .cart-item-details input:focus {
    outline: none;
    border-color: #ff6f61;
  }
  
  .remove-btn {
    background-color: #d35c53;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .remove-btn:hover {
    background-color: #ff6f61;
  }
  
  /* Cart Summary */
  .cart-summary {
    background-color: #161b22;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.5);
    margin-top: 50px;
  }
  
  .cart-summary h3 {
    font-size: 2rem;
    color: #ff6f61;
    margin-bottom: 20px;
  }
  
  .cart-summary p {
    font-size: 1.5rem;
    color: #f5f5f5;
    margin-bottom: 20px;
  }
  
  .cta-button {
    background-color: #ff6f61;
    padding: 15px 30px;
    color: white;
    text-decoration: none;
    font-size: 1.4rem;
    border-radius: 10px;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  
  .cta-button:hover {
    background-color: #d35c53;
    transform: translateY(-5px);
  }
  
  /* Footer */
  footer {
    background-color: #161b22;
    text-align: center;
    padding: 20px 0;
    color: #f5f5f5;
    position: relative;
    bottom: 0;
    width: 100%;
  }
  
  /* Mobile Responsiveness */
  @media (max-width: 768px) {
    .cart-items {
      flex-direction: column;
      gap: 20px;
    }
  
    .cart-item {
      flex-direction: column;
      align-items: flex-start;
      text-align: left;
    }
  
    .cart-item img {
      width: 100%;
      margin-right: 0;
    }
  
    .cart-summary {
      margin-top: 40px;
    }
  
    .cta-button {
      font-size: 1.2rem;
      padding: 12px 25px;
    }
  }