 h1.page-title {
     font-size: 2.8rem;
     font-weight: 700;
     text-align: center;
     margin-bottom: 2.5rem;
 }

 .cart-container {
     display: grid;
     grid-template-columns: 2fr 1fr;
     gap: 3rem;
 }

 .cart-items {
     background: var(--card);
     border-radius: 16px;
     padding: 2rem;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
 }

 .cart-item {
     display: grid;
     grid-template-columns: 100px 1fr auto;
     gap: 1.5rem;
     padding: 1.5rem 0;
     border-bottom: 1px solid rgba(212, 175, 55, 0.15);
 }

 .cart-item:last-child {
     border-bottom: none;
 }

 .item-image {
     width: 100px;
     height: 120px;
     border-radius: 10px;
     overflow: hidden;
 }

 .item-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .item-details h4 {
     font-size: 1.2rem;
     margin-bottom: 0.5rem;
 }

 .item-details .price {
     color: var(--primary);
     font-weight: 600;
     font-size: 1.1rem;
 }

 .item-details .variant {
     color: var(--muted);
     font-size: 0.95rem;
     margin: 0.4rem 0;
 }

 .quantity-control {
     display: flex;
     align-items: center;
     gap: 0.8rem;
     margin: 0.8rem 0;
 }

 .qty-btn {
     width: 32px;
     height: 32px;
     background: rgba(212, 175, 55, 0.1);
     border: 1px solid var(--primary);
     border-radius: 6px;
     color: var(--primary);
     font-size: 1.1rem;
     cursor: pointer;
     transition: all 0.3s;
 }

 .qty-btn:hover {
     background: var(--primary);
     color: #000;
 }

 .qty-input {
     width: 50px;
     text-align: start;
     background: transparent;
     border: 1px solid var(--muted);
     border-radius: 6px;
     color: white;
     padding: 0.4rem;
 }

 .remove-btn {
     color: #c0392b;
     font-size: 1.3rem;
     cursor: pointer;
     transition: all 0.3s;
 }

 .remove-btn:hover {
     color: #c0392b;
     transform: scale(1.2);
 }

 .cart-summary {
     background: var(--card);
     border-radius: 16px;
     padding: 2rem;
     height: fit-content;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
 }

 .summary-title {
     font-size: 1.5rem;
     font-weight: 600;
     margin-bottom: 1.5rem;
 }

 .summary-row {
     display: flex;
     justify-content: space-between;
     margin-bottom: 1rem;
     font-size: 1.05rem;
 }

 .summary-total {
     font-size: 1.4rem;
     font-weight: 700;
     color: var(--primary);
     border-top: 1px solid rgba(212, 175, 55, 0.2);
     padding-top: 1rem;
     margin-top: 1rem;
 }

 .promo {
     margin: 1.5rem 0;
 }

 .promo input {
     width: 100%;
     padding: 0.9rem;
     background: #1a1a20;
     border: 1px solid var(--muted);
     border-radius: 8px 0 0 8px;
     color: white;
 }

 .promo button {
     padding: 0.9rem 1.5rem;
     background: var(--primary);
     color: #000;
     border: none;
     border-radius: 0 8px 8px 0;
     cursor: pointer;
     font-weight: 600;
 }

 .action-buttons {
     display: flex;
     flex-direction: column;
     gap: 1rem;
     margin-top: 2rem;
 }

 .btn {
     padding: 1.1rem;
     border-radius: 50px;
     font-weight: 600;
     text-align: center;
     transition: all 0.4s;
     cursor: pointer;
 }

 .btn-primary {
     background: var(--primary);
     color: #000;
 }

 .btn-primary:hover {
     transform: translateY(-3px);
     box-shadow: 0 15px 40px rgba(212, 175, 55, 0.35);
 }

 .btn-outline {
     border: 1.5px solid var(--primary);
     color: var(--primary);
 }

 .btn-outline:hover {
     background: var(--primary);
     color: #000;
 }

 .empty-cart {
     text-align: center;
     padding: 6rem 2rem;
 }

 .empty-cart i {
     font-size: 5rem;
     color: var(--muted);
     margin-bottom: 1.5rem;
 }

 .empty-cart h2 {
     font-size: 2rem;
     margin-bottom: 1rem;
 }



 /* RESPONSIVE */
 @media (max-width: 1024px) {
     .cart-container {
         grid-template-columns: 1fr;
         gap: 2.5rem;
     }

     main {
         padding: 2rem 3rem 6rem;
     }
 }

 @media (max-width: 600px) {
     .cart-item {
         grid-template-columns: 80px 1fr;
         gap: 1rem;
     }

     .item-actions {
         grid-column: 1 / -1;
         margin-top: 1rem;
     }

     .action-buttons {
         flex-direction: column;
     }
 }
