body {
    font-family: 'Century Gothic', sans-serif;
    background-color: white;
    margin: 0;
    padding: 0;
}

.breadcrumb h1 {
    font-size: 16px;
    color: #333;
    margin: 20px 0;
}

.cart-heading {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    color: #333;
    font-weight: 400;
    margin-top: 20px;
    letter-spacing: 4px;
    /* text-decoration: underline; */
    /* border-top: 1px solid #e0e0e0; */
    /* margin-top: -5px; */
}

    .main-cart-container {
        display: flex;
        justify-content: space-between;
        gap: 20px;
        flex-direction: column;
        padding: 20px;
        flex-wrap: wrap;
    }

.cart-products {
    background: #fff;
    padding: 20px;
    box-shadow: 0 1px 3px rgb(0 0 0 / 20%);
    flex: 1 1 65%;
    border-radius: 20px;
    width: 100%;
}

.cart-summary {
    background: #fff;
    padding: 20px;
    box-shadow: 0 1px 3px rgb(0 0 0 / 20%);
    flex: 1 1 30%;
    height: 215px;
    width: 35%;
    border-radius: 20px;
}

.table-header,
.cart-item {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr 1fr 1.5fr 1fr 1fr;
    align-items: center;
    text-align: center;
    margin-bottom: 10px;
}

.table-header div {
    font-weight: 500; 
    color: var(--dark_pink);
    border-bottom: 1px solid var(--dark_pink);
    padding-bottom: 8px;
}

.cart-item img {
    width: 70px;
    height: 70px;
    object-fit: cover;
}

.cart-item p {
    margin: 0;
    font-size: 15px;
    color: #333;
}
.subtotal > h3 {
  margin: 0;
  font-size: 14px;
  color: #333;
}
.quantity-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.quantity-controls button {
    width: 30px;
    height: 30px;
    font-size: 17px;
    border: 1px solid #f3f3f3;
    border-radius: 4px;
    background: transparent;
    cursor: pointer;
}

.quantity-controls span {
    display: inline-block;
    width: 30px;
    text-align: center;
}

.remove-btn {
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 5px 10px;
    cursor: pointer;
}

.additional-comments {
    margin-top: 20px;
}

.additional-comments h2 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.additional-comments textarea {
    width: 100%;
    height: 100px;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px;
    font-size: 14px;
}

.secure-shopping {
    display: flex;
    align-items: center;
    margin-top: 10px;
    font-size: 14px;
    color: #555;
}

.secure-shopping i {
    font-size: 18px;
    color: var(--dark_pink);
    margin-right: 5px;
}

.cart-summary h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.cart-summary p {
    font-size: 18px;
    margin-bottom: 20px;
}

.cart-summary button {
    width: 100%;
    padding: 10px 0;
    font-size: 16px;
    color: #fff;
    background: var(--dark_pink);
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.cart-section{
    border-top: 1px solid #e0e0e0;
}

@media(max-width:575px){
  .main-cart-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-direction: column-reverse;
    padding: 20px;
    /* flex-wrap: wrap; */
}
.table-header{
  display: none;
}
}
@media(min-width:576px) and (max-width:768px){
  .main-cart-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-direction: column-reverse;
    padding: 20px;
}
.table-header{
  display: none;
}
}
@media(max-width:575px) {
    .cart-item {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 10px;
        border-bottom: 1px solid #ddd;
    }

    .cart-item img, 
    .cart-item .product-name {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .cart-item img {
        width: 50px;
        height: 50px;
        object-fit: cover;
        border-radius: 4px;
    }

    .cart-item .product-name {
        flex: 1;
        font-size: 16px;
        font-weight: bold;
        color: #333;
    }

    .cart-item .product-size,
    .cart-item .product-price {
        display: inline-block;
        font-size: 14px;
        color: #666;
        margin-right: 10px;
    }

    .quantity-controls,
    .subtotal {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .quantity-controls button {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }

    .quantity-controls span {
        width: 30px;
        text-align: center;
        font-size: 14px;
    }

    .subtotal h3 {
        font-size: 16px;
        font-weight: bold;
        color: #333;
    }

    .remove-btn {
        color: white;
        border: none;
        border-radius: 4px;
        padding: 5px 10px;
        font-size: 14px;
        cursor: pointer;
    }
    .cart-summary {
        width: 100%;
    }
    .cart-section{
        border-top: none;
    }
}