
        .readonly-input[readonly] {
            background-color: transparent;
        }

        .product-details-section {
            padding: 60px 0;
        }

        .container {
            width: 92%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .product-details-wrapper {
            display: flex;
            gap: 40px;
            align-items: flex-start;
        }

        /* Left image */
        .product-image-area {
            flex: 0 0 34%;
        }

        .product-image-box {
            background: #fff;
            border: 1px solid #dcdcdc;
            border-radius: 10px;
            padding: 25px;
            text-align: center;
        }

        .product-image-box img {
            max-width: 100%;
            height: auto;
            object-fit: contain;
        }

        /* Middle details */
        .product-info-area {
            flex: 0 0 31%;
        }

        .product-title {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 18px;
            line-height: 1.3;
        }

        .product-meta {
            font-size: 16px;
            color: #777;
            margin-bottom: 10px;
        }

        .product-meta strong {
            color: #666;
            font-weight: 700;
        }

        .product-price {
            font-size: 20px;
            font-weight: 700;
            color: #000;
            margin: 18px 0;
        }

        .product-desc {
            font-size: 15px;
            line-height: 1.8;
            color: #6f7b8a;
            margin-bottom: 22px;
        }

        .product-specs {
            font-size: 15px;
            line-height: 1.8;
            color: #6f7b8a;
            margin-bottom: 25px;
        }

        .qty-cart-area {
            margin-top: 10px;
        }

        .qty-box {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 25px;
        }

        .qty-btn {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            border: 1px solid #d8d8d8;
            background: #f2f2f2;
            color: #7a7a7a;
            font-size: 22px;
            line-height: 1;
            cursor: pointer;
        }

        .qty-value {
            font-size: 18px;
            min-width: 20px;
            text-align: center;
            color: #666;
        }

        .cart-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 24px;
            border: 1.5px solid #9d4948;
            border-radius: 999px;
            background: #fff;
            color: #9d4948;
            text-decoration: none;
            font-size: 16px;
            transition: 0.3s ease;
        }

        .cart-btn:hover {
            background: #9d4948;
            color: #fff;
        }

        /* Right sidebar */
        .category-sidebar {
            flex: 0 0 25%;
        }

        .category-box {
            padding-top: 5px;
        }

        .category-box h3 {
            font-size: 24px;
            font-weight: 500;
            margin-bottom: 25px;
        }

        .category-list {
            list-style: none;
        }

        .category-list li {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 18px;
            font-size: 15px;
        }

        .category-list li a {
            text-decoration: none;
            color: #2b2b74;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .category-list li a:hover {
            color: #ff4b4b;
        }

        .category-list li i {
            font-size: 16px;
        }

        .category-count {
            color: #7f7f7f;
        }

        @media (max-width: 1199px) {
            .product-details-wrapper {
                gap: 25px;
            }

            .product-title {
                font-size: 24px;
            }
        }

        @media (max-width: 991px) {
            .product-details-wrapper {
                flex-direction: column;
            }

            .product-image-area,
            .product-info-area,
            .category-sidebar {
                flex: 0 0 100%;
                width: 100%;
            }

            .category-sidebar {
                margin-top: 25px;
            }
        }

        @media (max-width: 576px) {
            .product-details-section {
                padding: 35px 0;
            }

            .product-title {
                font-size: 22px;
            }

            .product-meta,
            .product-desc,
            .product-specs {
                font-size: 14px;
            }

            .cart-btn {
                font-size: 15px;
                padding: 11px 20px;
            }
        }


                /* /*************** */
    .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;
}

/* ------------------------ */
.product-gallery {
    width: 100%;
}

.main-image-box {
    width: 100%;
    height: 430px;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 25px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-image-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.thumb-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 15px;
}

.thumb-box {
    height: 90px;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 6px;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumb-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.thumb-box.active,
.thumb-box:hover {
    border-color: #ff4b4b;
}

@media (max-width: 576px) {
    .main-image-box {
        height: 300px;
        padding: 15px;
    }

    .thumb-box {
        height: 70px;
    }
}


/*  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  */
