 /* Your original header and footer styles remain exactly the same */
    /* NEW CART STYLES */
    .cart-page {
      padding: 40px 0;
      background-color: var(--light);
      min-height: calc(100vh - 400px);
    }

    .page-title {
      text-align: center;
      margin-bottom: 40px;
      padding-top: 20px;
    }

    .page-title h1 {
      font-size: 2.5rem;
      color: var(--dark);
      margin-bottom: 10px;
      position: relative;
      display: inline-block;
    }

    .page-title h1:after {
      content: '';
      position: absolute;
      width: 60%;
      height: 2px;
      background: var(--primary);
      bottom: -12px;
      left: 20%;
    }

    .cart-container {
      display: grid;
      grid-template-columns: 1fr 350px;
      gap: 30px;
      margin-bottom: 40px;
    }

    .cart-items {
      background: #fff;
      border-radius: 12px;
      box-shadow: var(--shadow);
      padding: 25px;
    }

    .cart-summary {
      background: #fff;
      border-radius: 12px;
      box-shadow: var(--shadow);
      padding: 25px;
      height: fit-content;
      position: sticky;
      top: 100px;
    }

    .cart-item {
      display: grid;
      grid-template-columns: 120px 1fr auto;
      gap: 20px;
      padding: 20px 0;
      border-bottom: 1px solid #eee;
    }

    .cart-item:last-child {
      border-bottom: none;
    }

    .item-image {
      width: 120px;
      height: 120px;
      border-radius: 8px;
      overflow: hidden;
      position: relative;
    }

    .item-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: var(--transition);
    }

    .item-image:hover img {
      transform: scale(1.05);
    }

    .item-details {
      padding-right: 15px;
    }

    .item-name {
      font-size: 1.2rem;
      font-weight: 600;
      margin-bottom: 8px;
      color: var(--dark);
    }

    .item-props {
      display: flex;
      gap: 15px;
      margin-bottom: 10px;
      font-size: 0.9rem;
    }

    .item-prop {
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .item-price {
      font-weight: 600;
      color: var(--secondary);
      font-size: 1.1rem;
    }

    .item-actions {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-top: 15px;
    }

    .quantity-control {
      display: flex;
      align-items: center;
      border: 1px solid #ddd;
      border-radius: 4px;
      overflow: hidden;
    }

    .qty-btn {
      width: 36px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #f5f5f5;
      border: none;
      cursor: pointer;
      font-size: 1.2rem;
      transition: var(--transition);
    }

    .qty-btn:hover {
      background: var(--primary);
      color: white;
    }

    .qty-value {
      width: 40px;
      text-align: center;
      font-weight: 500;
    }

    .remove-btn {
      background: none;
      border: none;
      color: #ff4d4d;
      cursor: pointer;
      font-size: 1.1rem;
      transition: var(--transition);
    }

    .remove-btn:hover {
      color: #cc0000;
    }

    .item-total {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      justify-content: center;
    }

    .subtotal {
      font-size: 1.2rem;
      font-weight: 600;
      color: var(--dark);
      margin-bottom: 5px;
    }

    .item-savings {
      font-size: 0.85rem;
      color: #28a745;
    }

    .summary-title {
      font-size: 1.4rem;
      margin-bottom: 20px;
      padding-bottom: 15px;
      border-bottom: 1px solid #eee;
    }

    .summary-row {
      display: flex;
      justify-content: space-between;
      margin-bottom: 12px;
    }

    .summary-label {
      color: #666;
    }

    .summary-value {
      font-weight: 500;
    }

    .summary-total {
      font-size: 1.3rem;
      font-weight: 700;
      margin: 20px 0;
      padding-top: 15px;
      border-top: 1px solid #eee;
    }

    .discount-code {
      margin: 20px 0;
    }

    .discount-input {
      display: flex;
      margin-top: 8px;
    }

    .discount-input input {
      flex: 1;
      padding: 10px 15px;
      border: 1px solid #ddd;
      border-radius: 4px 0 0 4px;
      outline: none;
    }

    .discount-input button {
      padding: 0 15px;
      background: var(--dark);
      color: white;
      border: none;
      border-radius: 0 4px 4px 0;
      cursor: pointer;
    }

    .checkout-btn {
      width: 100%;
      padding: 16px;
      background: var(--primary);
      color: white;
      border: none;
      border-radius: 4px;
      font-size: 1.1rem;
      font-weight: 600;
      cursor: pointer;
      transition: var(--transition);
      margin-top: 15px;
    }

    .checkout-btn:hover {
      background: var(--secondary);
    }

    .continue-shopping {
      text-align: center;
      margin-top: 15px;
    }

    .continue-shopping a {
      color: var(--primary);
      text-decoration: underline;
      transition: var(--transition);
    }

    .continue-shopping a:hover {
      color: var(--secondary);
    }

    .empty-cart {
      text-align: center;
      padding: 60px 20px;
    }

    .empty-cart i {
      font-size: 4rem;
      color: #ddd;
      margin-bottom: 20px;
    }

    .empty-cart h3 {
      font-size: 1.5rem;
      margin-bottom: 15px;
      color: #666;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
      .cart-container {
        grid-template-columns: 1fr;
      }

      .cart-summary {
        position: static;
      }
    }

    @media (max-width: 768px) {
      .cart-item {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .item-image {
        margin: 0 auto;
      }

      .item-actions {
        justify-content: center;
      }

      .item-total {
        align-items: center;
      }

      .item-props {
        justify-content: center;
      }
    }

    @media (max-width: 576px) {
      .cart-items, .cart-summary {
        padding: 15px;
      }

      .page-title h1 {
        font-size: 2rem;
      }
    }