/* Cart Page Styles */
        .cart-page {
            margin-top: 2rem;
          margin-bottom: 2rem;
        }

        .cart-section-title {
          font-size: var(--h2-font-size);
          margin-bottom: 2rem;
          text-align: center;
          text-transform: uppercase;
          font-weight: var(--weight-600);
        }

        .cart-table {
          width: 100%;
          margin-bottom: 2rem;
          border-bottom: 1px solid #f1f1f1;
        }

        .cart-table-header {
          display: grid;
          grid-template-columns: 4fr 1fr 1fr;
          padding: 1rem 0;
          border-bottom: 1px solid var(--border-color);
          font-family: var(--second-font);
          font-weight: var(--weight-600);
          color: var(--title-color);
          text-transform: uppercase;
        }

        .cart-product {
          display: grid;
          grid-template-columns: 4fr 1fr 1fr;
          padding: 2rem 0;
          border-bottom: none !important;
          align-items: center;
        }

        .product-info {
          display: flex;
          gap: 2.5rem;
        }

        .product-image {
          width: 160px;
          object-fit: cover;
        }

        .product-details {
          display: flex;
          flex-direction: column;
          gap: 0.5rem;
          text-align: left !important;
          justify-content: center;
        }

        .product-author {
          color: var(--text-color-light);
          text-align: left;
          text-transform: uppercase;
          margin-bottom: 0;
        }

        .product-title {
          font-family: var(--second-font);
          font-size: var(--h4-font-size);
          font-weight: var(--weight-600);
          text-align: left;
          color: var(--title-color);
          margin-bottom: 0;
        }

        .product-meta {
          margin-top: 0;
          color: var(--text-color);
          line-height: 1.5;
          margin-bottom: 0;
        }

        .quantity-wrapper {
          display: flex;
          gap: .5rem;
          justify-content: center;
          align-items: center;
        }

        .quantity-control {
          display: flex;
          align-items: center;
          border: 1px solid var(--border-color);
          border-radius: 4px;
        }

        .quantity-btn {
          width: 30px;
          height: 30px;
          display: flex;
          align-items: center;
          justify-content: center;
          background-color: #f8f8f8;
          border: none;
          cursor: pointer;
        }

        .quantity-input {
          width: 40px;
          height: 30px;
          text-align: center;
          border: none;
          border-left: 1px solid var(--border-color);
          border-right: 1px solid var(--border-color);
        }

        .product-price {
          font-weight: var(--weight-600);
          color: var(--title-color);
          font-size: var(--h4-font-size);
          justify-content: flex-end;
          text-align: right;
        }

        .remove-btn {
          color: var(--error-color);
          background: none;
          border: none;
          cursor: pointer;
          font-size: 18px;
          display: flex;
          align-items: center;
        }

        /* Cart Summary and Actions */
        .cart-actions {
          display: grid;
          grid-template-columns: 1fr 1fr;
          gap: 10rem;
          margin-top: 2rem;
        }

        .cart-coupon {
          display: flex;
          flex-direction: column;
          gap: 1rem;
        }

        .coupon-title {
          font-size: var(--normal-font-size);
          font-weight: var(--weight-600);
          margin-bottom: 0.5rem;
        }

        .coupon-form {
          display: flex;
          gap: 1rem;
        }

        .coupon-input {
          flex: 1;
          padding: 0.8rem 1rem;
          border: 1px solid var(--border-color);
          border-radius: 4px;
        }

        .continue-shopping {
          display: inline-block;
          padding: 0.8rem 1.5rem;
          background-color: var(--first-color);
          color: var(--body-color);
          font-weight: var(--weight-500);
          text-align: center;
          margin-top: .2rem;
        }

        .cart-summary {
          background-color: #f9f9f9;
          padding: 1rem;
          border-radius: 4px;
        }

        .summary-title {
          font-size: var(--h4-font-size);
          font-weight: var(--weight-600);
          margin-bottom: 1rem;
        }

        .summary-row {
          display: flex;
          justify-content: space-between;
          padding: 0.5rem 0;
        }

        .summary-row:last-of-type {
          border-bottom: none;
          font-weight: var(--weight-600);
          font-size: var(--large-font-size);
          color: var(--title-color);
          padding: 1.5rem 0;
          margin-bottom: 40px;
        }

        .summary-label {
          font-weight: var(--weight-500);
        }

        .summary-value {
            font-size: var(--large-font-size);
          font-weight: var(--weight-600);
        }

        .summary-row:nth-child(4){
            border-bottom: 1px solid var(--border-color);
        }

        .checkout-message {
          font-size: var(--small-font-size);
          color: var(--text-color-light);
          margin: 1rem 0;
        }

        .checkout-btn {
          width: 100%;
          padding: 1rem;
          background-color: var(--first-color);
          color: white;
          border: none;
          border-radius: 4px;
          font-weight: var(--weight-600);
          cursor: pointer;
          font-size: var(--large-font-size);
        }

        /* FEATURED COLLECTION */
        .featured-section {
          margin-top: 4rem;
          padding-top: 2rem;
          border-top: 1px solid var(--border-color);
        }

        .featured-title {
          font-size: var(--h2-font-size);
          text-align: center;
          margin-bottom: 2rem;
          text-transform: uppercase;
          position: relative;
          padding-bottom: 1rem;
        }

        .featured-title::after {
          content: '';
          position: absolute;
          bottom: 0;
          left: 50%;
          transform: translateX(-50%);
          width: 60px;
          height: 3px;
          background-color: var(--cart-btn-color);
        }

        /* Responsive */
        @media screen and (max-width: 768px) {
          .cart-actions {
            grid-template-columns: 1fr;
          }
          
          .cart-table-header {
            display: none;
          }
          
          .cart-product {
            grid-template-columns: 1fr;
            gap: 1rem;
            padding: 1.5rem 0;
          }
          
          .product-price {
            text-align: left;
          }
          
          .quantity-wrapper {
            justify-content: flex-start;
          }
        }