/* Modal Popup Özel Stilleri */
.modal-dialog.quickview-dialog {
    max-width: 900px;
}

.product-single-content {
    padding: 30px;
    position: relative;
    background: linear-gradient(135deg, #fff8e1 0%, #fff 100%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.product-single-content h5 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #333;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    position: relative;
    z-index: 2;
}

.product-single-content h5:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #ffc107;
    border-radius: 2px;
}

.product-single-content p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #666;
    margin: 25px 0;
    font-weight: 400;
    text-align: justify;
    position: relative;
    z-index: 2;
}

.modal-content {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.modal-body {
    padding: 0;
    background: #fff;
}

.product-single-img {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    margin: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.product-single-img img {
    transition: transform 0.3s ease;
}

.product-single-img:hover img {
    transform: scale(1.05);
}

.m-shape {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.m-shape img {
    width: 100%;
    height: auto;
    opacity: 0.2;
    transform: rotate(-15deg);
}

.btn-close {
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 100;
    background: #fff;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.btn-close:hover {
    transform: rotate(90deg);
    background: #ffc107;
    color: #fff;
}
