.product-details {
    padding: 100px 0 50px;
}

.product-img-box {
    background-color: #00AEEF;
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../../uploads/pattern-bg.png'); /* placeholder for pattern */
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

.product-img-box img {
    max-width: 90%;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.3));
}

.product-info-box {
    padding-left: 30px;
}

.product-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.product-title {
    color: #194376;
    font-weight: 800;
    font-size: 32px;
    margin: 0;
    line-height: 1.3;
}

.stock-badge {
    background-color: #e6f6ec;
    color: #28a745;
    font-size: 13px;
    padding: 6px 15px;
    border-radius: 30px;
    font-weight: 600;
    white-space: nowrap;
    margin-left: 20px;
    margin-top: 5px;
}

.product-desc {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.document-btn {
    display: flex;
    align-items: center;
    background-color: #f4f5f7;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    flex: 1;
}

.document-btn:hover {
    background-color: #e2e4e8;
    color: #194376;
}

.doc-icon {
    background-color: #e63946;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-weight: 700;
    font-size: 12px;
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    background-color: #25d366;
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background-color: #128c7e;
    color: white;
}

.btn-email {
    display: flex;
    align-items: center;
    background-color: #f4f5f7;
    color: #333;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-email:hover {
    background-color: #e2e4e8;
    color: #194376;
}

.share-title {
    font-size: 13px;
    color: #888;
    margin-bottom: 10px;
    font-weight: 500;
}

.share-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #b5b5b5;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-icon:hover {
    background-color: #00AEEF;
    color: white;
}

.description-box {
    background-color: #f4f5f7;
    border-radius: 20px;
    padding: 50px;
}

.description-title {
    text-align: center;
    color: #194376;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
}

.description-text {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.feature-box {
    background-color: #194376;
    height: 250px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(25, 67, 118, 0.2);
}

.similar-products {
    padding: 50px 0 100px;
}

/* Adjust services card */
.similar-products .services-one__single {
    margin-top: 50px;
}

@media (max-width: 991px) {
    .product-info-box {
        padding-left: 0;
        margin-top: 40px;
    }
}
