 .cart-section {
     padding: 60px 20px;
     background: #f7f7f7;
 }

 .cart-content-wrapper {
     width: 100%;
     max-width: 1200px;
     margin: 0 auto;
     background: #fff;
     padding: 30px;
     border-radius: 12px;
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
 }

 .cart-heading {
     font-size: 28px;
     font-weight: 700;
     text-align: center;
     margin-bottom: 30px;
 }

 .cart-table {
     display: grid;
     grid-template-columns: 2fr 1fr 3fr 1fr auto;
     gap: 10px;
     border-top: 2px solid #e0e0e0;
     border-bottom: 2px solid #e0e0e0;
 }

 .cart-row {
     display: contents;
 }

 .cart-header span {
     font-weight: 600;
     text-transform: uppercase;
     padding: 12px 10px;
     border-bottom: 1px solid #ccc;
     display: flex;
     align-items: center;
 }

 .cart-item>* {
     padding: 12px 10px;
     border-bottom: 1px solid #eee;
     display: flex;
     align-items: center;
 }

 .cart-product {
     display: flex;
     align-items: center;
     gap: 12px;
 }

 .cart-product img {
     width: 60px;
     height: 60px;
     object-fit: cover;
     border-radius: 6px;
 }

 .cart-product p {
     font-size: 16px;
     font-weight: 500;
     margin: 0;
 }

 .cart-qty {
     display: flex;
     gap: 6px;
     justify-content: center;
 }

 .cart-qty button {
     width: 28px;
     height: 28px;
     background: #2a9d8f;
     color: #fff;
     border-radius: 4px;
     border: none;
     cursor: pointer;
     font-weight: bold;
     transition: 0.2s;
 }

 .cart-qty button:hover {
     background: #21867a;
 }

 .cart-qty input {
     width: 50px;
     text-align: center;
     border-radius: 4px;
     border: 1px solid #ccc;
     padding: 4px;
 }

 .cart-remove {
     font-size: 18px;
     color: red;
     background: none;
     border: none;
     cursor: pointer;
     display: flex;
     justify-content: center;
     align-items: center;
     transition: transform 0.2s;
 }

 .cart-remove:hover {
     transform: scale(1.2);
 }

 .size-section {
     display: flex;
     flex-direction: column;
     gap: 5px;
 }

 .size-row {
     display: flex;
     align-items: center;
     gap: 8px;
 }

 .size-label {
     width: 50px;
     font-size: 14px;
     font-weight: 500;
 }

 .cart-summary-box {
     margin-top: 30px;
     font-size: 16px;
 }

 .summary-line {
     display: flex;
     justify-content: space-between;
     margin-bottom: 8px;
 }

 .summary-total {
     font-weight: 700;
     font-size: 18px;
     color: #2a9d8f;
 }

 @media(max-width:768px) {
     .cart-table {
         display: block;
         overflow-x: auto;
         width: 100%;
     }

     .cart-row {
         display: grid;
         grid-template-columns: 2fr 1fr 3fr 1fr auto;
         min-width: 600px;
     }
 }
