
        /*  Newsletter Box  */
		.subscribe-popup {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    align-items: center;
    justify-content: center;
}

.popup-box {
    background: #fff;
    width: 90%;
    max-width: 400px;
    padding: 35px 25px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    animation: popupFade 0.3s ease;
}

.popup-box h3 {
    margin-bottom: 10px;
    color: #111;
    font-size: 26px;
}

.popup-box p {
    color: #666;
    font-size: 15px;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 26px;
    cursor: pointer;
    color: #ff1f2d;
}

.newsletter-area {
    
    padding-top: 0;
    padding-bottom: 0;
}

.newsletter-box {
    width: 86%;
    max-width: 1200px;
    background: #9d4948;
	margin: 0 auto;
    padding: 28px 95px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}

.newsletter-box h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0;
    white-space: nowrap;
}

.newsletter-form {
    display: flex;
    align-items: center;
    gap: 15px;
}

.newsletter-input {
    position: relative;
    width: 470px;
}

.newsletter-input input {
    width: 100%;
    height: 52px;
    border: none;
    border-radius: 4px;
    padding: 0 55px 0 22px;
    font-size: 14px;
    outline: none;
    background: #fff;
}

.newsletter-input i {
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    color: #9aa3ad;
    font-size: 20px;
}

.newsletter-form button {
    height: 52px;
    padding: 0 36px;
    border: none;
    border-radius: 4px;
    background: #080808;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.newsletter-form button:hover {
    background: #eab7d4;
}

@media (max-width: 991px) {
    .newsletter-box {
        padding: 25px 30px;
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        width: 100%;
        justify-content: center;
    }

    .newsletter-input {
        width: 100%;
        max-width: 470px;
    }
}

@media (max-width: 576px) {
    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
    }

    .newsletter-box h4 {
        white-space: normal;
    }
}

@keyframes popupFade {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/*  Newsletter Box  */

        .readonly-input[readonly] {
            background-color: transparent;
        }

        .cart-section {
            padding: 60px 0;
        }

        .container {
            width: 94%;
            max-width: 1300px;
            margin: 0 auto;
        }

        .cart-table-wrapper {
            width: 100%;
            overflow-x: auto;
            margin-bottom: 40px;
        }

        .cart-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 1000px;
        }

        .cart-table thead th {
            text-align: left;
            font-size: 18px;
            font-weight: 600;
            color: #66788a;
            padding: 0 10px 14px;
            border-bottom: 1px solid #9aa8b5;
        }

        .cart-table tbody td {
            padding: 18px 10px;
            border-bottom: 1px solid #dcdcdc;
            vertical-align: middle;
            font-size: 16px;
            color: #6a7887;
        }

        .product-img {
            width: 70px;
            height: 70px;
            object-fit: contain;
            display: block;
        }

        .product-name {
            font-size: 18px;
            color: #5d6f82;
            font-weight: 500;
        }

        .qty-box {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .qty-btn,
        .remove-btn {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            border: 1px solid #d6dbe1;
            background: #f1f3f5;
            color: #6d7d8e;
            font-size: 24px;
            line-height: 1;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .qty-btn:hover {
            background: #e8ebef;
        }

        .remove-btn {
            color: #ff4c4c;
            font-size: 22px;
        }

        .remove-btn:hover {
            background: #ffeaea;
        }

        .qty-value {
            min-width: 16px;
            text-align: center;
            font-size: 18px;
            color: #6a7887;
        }

        .cart-summary-wrap {
            display: flex;
            justify-content: flex-end;
        }

        .cart-summary {
            width: 100%;
            max-width: 420px;
            background: #f0f1f3;
            border-radius: 12px;
            overflow: hidden;
        }

        .cart-summary h2 {
            font-size: 38px;
            font-weight: 700;
            color: #000;
            padding: 28px 24px 22px;
        }

        .summary-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 24px 28px;
            font-size: 20px;
        }

        .summary-row strong {
            color: #000;
            font-weight: 500;
        }

        .summary-row span {
            color: #708295;
        }

        .summary-divider {
            border-top: 1px solid #d7d7d7;
        }

        .summary-row.total {
            padding: 22px 24px;
        }

        .checkout-wrap {
            padding: 24px;
            border-top: 1px solid #d7d7d7;
        }

        .checkout-btn {
            display: inline-block;
            padding: 16px 24px;
            border: 1.5px solid #9d4948;
            border-radius: 999px;
            text-decoration: none;
            color: #9d4948;
            font-size: 18px;
            font-weight: 500;
            background: #fff;
            transition: 0.3s ease;
        }

        .checkout-btn:hover {
            background: #9d4948;
            color: #fff;
        }

        @media (max-width: 991px) {
            .cart-summary-wrap {
                justify-content: center;
            }

            .cart-summary {
                max-width: 100%;
            }
        }

        @media (max-width: 768px) {
            .cart-section {
                padding: 35px 0;
            }

            .cart-table thead th {
                font-size: 16px;
            }

            .cart-table tbody td {
                font-size: 15px;
            }

            .product-name {
                font-size: 16px;
            }

            .summary-row {
                font-size: 18px;
            }

            .cart-summary h2 {
                font-size: 30px;
            }

            .checkout-btn {
                width: 100%;
                text-align: center;
                font-size: 16px;
            }
        }


        /* /*************** */
    .cart-nav {
    position: relative;
}

.cart-icon {
    position: relative;
    font-size: 22px;
    color: #2b2b74;
    padding: 18px 15px !important;
}

.cart-icon i {
    font-size: 24px;
}

.cart-count {
    position: absolute;
    top: 8px;
    right: 6px;
    background: #ff1f2d;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

