@media (max-width: 768px) {
        .cart-container {
            display: flex;
            flex-direction: column;
            flex-wrap: wrap;
            justify-content: center;
            max-width: 1200px;
            margin: 20px auto;
            background-color: #fff;
            border-radius: 8px;
            overflow: hidden;
        }
        .cart-container .cart-items {
            padding: 20px;
        }

}

.nav-links #search-results {
    border-radius: 5px;
    width: 100%;
    max-width: 350px;
    position:absolute;
    top:60px;
}
.nav-links #search-results div {
    width: 100%;
    border:1px solid #EFEFEF;
    background: #FFF;
}
.nav-links #search-results div:hover {
    background: #fcfcfc;
}
.nav-links #search-results div a {
    padding:10px;
    text-decoration: none;
    color: #222;
    display: block;
}


.cart-item button.subtract, .cart-item button.add {
    width: 30px;
    height: 30px;
    border:1px solid #222;
    background: #FFF;
    margin-bottom: 20px;
    cursor: pointer;
}
.cart-item-details input.qty {
    border:0;
    height: 30px;
    width: 50px;
    text-align: center;

}
        .cart-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            max-width: 1200px;
            margin: 20px auto;
            background-color: #fff;
            border-radius: 8px;
            overflow: hidden;
        }

        .cart-items {
            flex: 2;
            padding: 0 20px 30px 0;
        }

        .cart-summary {
            flex: 1;
            padding: 20px;
            border-left: 1px solid #e0e0e0;
            background-color: #fafafa;
        }

        .cart-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 15px;
            border-bottom: 1px solid #e0e0e0;
            padding-bottom: 10px;
        }

        .cart-item img {
            width: 80px;
            height: 80px;
            object-fit: cover;
            border-radius: 8px;
            margin-right: 15px;
        }

        .cart-item-info {
            flex: 1;
        }

        .cart-item-title {
            font-size: 16px;
            font-weight: bold;
        }

        .cart-item-details {
            font-size: 13px;
            color: #666;
        }

        .cart-item-price {
            font-size: 16px;
            font-weight: bold;
            color: #F3AF0D;
        }

        .summary-section {
            margin-bottom: 20px;
            font-size: 13px;
        }
        .summary-section div {
            display: flex;
        }
        .summary-section div input[name=month], .summary-section div input[name=year] {
            width: 30%;
            margin-right: 10px;
            padding: 10px;
            border-radius: 10px;
            border:1px solid #eee;
            font-family: "Montserrat";
            font-size: 13px;
        }
        .summary-section div input[name=cvv] {
            width: 70%;
            padding: 10px;
            border-radius: 10px;
            border:1px solid #eee;
            font-family: "Montserrat";
            font-size: 13px;
        }
        .summary-section input[name=name], .summary-section select, .summary-section input[name=card-number] {
            margin-bottom: 15px;
            width: 100%;
            padding: 10px;
            border-radius: 10px;
            border:1px solid #eee;
            font-family: "Montserrat";
            font-size: 13px;
        }

        .checkout-section {
            margin-bottom: 20px;
            padding: 20px;
            background:#E9C7BD;
            border-radius:5px;
            font-size: 16px;
        }
        .checkout-section p {
            color: #000;
        }

        .summary-title {
            font-size: 17px;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .summary-content {
            font-size: 16px;
        }

        .input-group {
            margin-top: 10px;
            display: flex;
            align-items: center;
        }

        .input-group input {
            flex: 1;
            padding: 8px;
            border: 1px solid #ccc;
            border-radius: 4px;
        }

        .input-group button {
            margin-left: 10px;
            padding: 8px 15px;
            border: none;
            background-color: #E2B769;
            color: white;
            font-weight: bold;
            cursor: pointer;
            border-radius: 4px;
        }

        .checkout-btn {
            display: block;
            width: 100%;
            padding: 15px;
            text-align: center;
            border: none;
            background-color: #FFF;
            color: #222;
            font-weight: bold;
            text-transform: uppercase;
            cursor: pointer;
            border-radius: 4px;
            font-family: "Montserrat";
        }

        .checkout-btn:hover {
            background-color: #f5f5f5;
        }

        @media (max-width: 768px) {
            .container {
                flex-direction: column;
            }

            .cart-summary {
                border-left: none;
                border-top: 1px solid #e0e0e0;
            }
        }